diff --git a/files/unarchive.py b/files/unarchive.py index 2b373a8e7fb..ac35ea58d88 100644 --- a/files/unarchive.py +++ b/files/unarchive.py @@ -310,8 +310,6 @@ def main(): # is dest OK to receive tar file? if not os.path.isdir(dest): module.fail_json(msg="Destination '%s' is not a directory" % dest) - if not os.access(dest, os.W_OK): - module.fail_json(msg="Destination '%s' not writable" % dest) handler = pick_handler(src, dest, module)