Commit 7d7e7fb8 by Michel Blanc

Adds path expansion to two other methods

set_owner_if_different and set_group_if_different seems to need path
expansion too
parent 0037a193
......@@ -307,6 +307,7 @@ class AnsibleModule(object):
return changed
def set_owner_if_different(self, path, owner, changed):
path = os.path.expanduser(path)
if owner is None:
return changed
user, group = self.user_and_group(path)
......@@ -323,6 +324,7 @@ class AnsibleModule(object):
return changed
def set_group_if_different(self, path, group, changed):
path = os.path.expanduser(path)
if group is None:
return changed
old_user, old_group = self.user_and_group(path)
......@@ -340,7 +342,6 @@ class AnsibleModule(object):
def set_mode_if_different(self, path, mode, changed):
path = os.path.expanduser(path)
if mode is None:
return changed
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment