From 4241106ad20a26482a0bc332f0d055ad5e53a4e5 Mon Sep 17 00:00:00 2001 From: nitzmahone Date: Thu, 24 Mar 2016 19:47:43 -0700 Subject: [PATCH] fix breakage from new recursive=True arg to chmod --- lib/ansible/plugins/shell/powershell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/shell/powershell.py b/lib/ansible/plugins/shell/powershell.py index 72f2570549f..443e55144df 100644 --- a/lib/ansible/plugins/shell/powershell.py +++ b/lib/ansible/plugins/shell/powershell.py @@ -66,7 +66,7 @@ class ShellModule(object): path = self._unquote(path) return path.endswith('/') or path.endswith('\\') - def chmod(self, mode, path): + def chmod(self, mode, path, recursive=True): return '' def remove(self, path, recurse=False):