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

remove recursive chown

parent 928ae3f8
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,7 @@ class LinuxUtility: ...@@ -82,7 +82,7 @@ class LinuxUtility:
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