You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: python/cernbox_utils/cmd_share_admin.py
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -256,17 +256,18 @@ def is_blacklisted(path):
256
256
continue
257
257
258
258
# expected ACL
259
-
expected_acls= [eos_to_check.AclEntry(entity="u",name=args.shares_owner,bits="rwx!m")] # this acl entry should be always set for every directory in homedir
259
+
uid=str(pwd.getpwnam(args.shares_owner).pw_uid)
260
+
expected_acls= [eos.AclEntry(entity="u",name=uid,bits="rwx")] # this acl entry should be always set for every directory in homedir
0 commit comments