Make sure permission-less entries are accepted when state=absent
Also, remove that try condition as, at that stage, no permissions with other than 2 or 3 fields are sent to the function.
This commit is contained in:
parent
e95bcaeb8a
commit
0e659ad872
1 changed files with 4 additions and 6 deletions
10
files/acl.py
10
files/acl.py
|
@ -127,12 +127,10 @@ def split_entry(entry):
|
|||
''' splits entry and ensures normalized return'''
|
||||
|
||||
a = entry.split(':')
|
||||
a.reverse()
|
||||
try:
|
||||
p, e, t = a
|
||||
except ValueError, e:
|
||||
print "wtf?? %s => %s" % (entry, a)
|
||||
raise e
|
||||
if len(a) == 2:
|
||||
a.append(None)
|
||||
|
||||
t, e, p = a
|
||||
|
||||
if t.startswith("u"):
|
||||
t = "user"
|
||||
|
|
Loading…
Add table
Reference in a new issue