diff --git a/files/unarchive.py b/files/unarchive.py index 386503cadd3..e25d0d75486 100644 --- a/files/unarchive.py +++ b/files/unarchive.py @@ -277,8 +277,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)