Skip to content
Snippets Groups Projects
Commit d870a9e0 authored by sveseli's avatar sveseli
Browse files

remove recursive chown

parent 83b096f6
No related branches found
No related tags found
No related merge requests found
...@@ -269,7 +269,7 @@ class LdapLinuxPlatformUtility: ...@@ -269,7 +269,7 @@ class LdapLinuxPlatformUtility:
def changePathGroupOwner(cls, path, groupName): def changePathGroupOwner(cls, path, groupName):
logger = cls.getLogger() logger = cls.getLogger()
logger.debug('Changing group owner to %s for path %s' % (groupName, path)) logger.debug('Changing group owner to %s for path %s' % (groupName, path))
cmd = '%s -R \:%s %s' % (cls.CHOWN_CMD, groupName, path) cmd = '%s \:%s %s' % (cls.CHOWN_CMD, groupName, path)
cls.executeSudoCommand(cmd) cls.executeSudoCommand(cmd)
####################################################################### #######################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment