Home | History | Annotate | Download | only in acl

Lines Matching refs:commands

1 import commands
33 u = commands.getoutput('/usr/sbin/useradd '+ opts)
40 u = commands.getoutput('touch ' + path + '/'+ fName)
44 u = commands.getoutput('/usr/sbin/groupadd -g' + gid + " " + grpname)
64 u = commands.getoutput('/usr/sbin/userdel -r '+ name)
70 u = commands.getoutput('/usr/sbin/groupdel '+ name[0])
89 u = commands.getoutput('ls ' + path)
214 u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + file)
218 u = commands.getoutput('setfacl -m g:' + group + ':' + mode + " " + path + "/" + file)
222 u = commands.getoutput('setfacl -x u:' + user + " " + path + "/" + file)
226 u = commands.getoutput('setfacl -x g:' + group + " " + path + "/" + file)
232 u = commands.getoutput('setfacl -x g:' + group + " " + path + "/" + file)
235 u = commands.getoutput('setfacl -x u:' + user + " " + path + "/" + file)
239 u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + file)
243 u = commands.getoutput('setfacl -m g:' + group + ':' + mode + " " + path + "/" + file)
247 u = commands.getoutput('getfacl ' + path + "/" + file + "| setfacl --set-file=- " + path + "/" + file2)