|
|
|
@ -24,41 +24,55 @@ file_is="$( cat "$__object/explorer/file_is" )" |
|
|
|
|
|
|
|
|
|
os="$( cat "$__global/explorer/os" )" |
|
|
|
|
|
|
|
|
|
acl_is="$( cat "$__object/explorer/acl_is" )" |
|
|
|
|
|
|
|
|
|
acl_path="/$__object_id" |
|
|
|
|
|
|
|
|
|
if [ -f "$__object/parameter/default" ] && [ "$file_is" = 'directory' ] |
|
|
|
|
acl_is="$( cat "$__object/explorer/acl_is" )" |
|
|
|
|
|
|
|
|
|
if [ -f "$__object/parameter/acl" ] |
|
|
|
|
then |
|
|
|
|
set_default=1 |
|
|
|
|
else |
|
|
|
|
set_default=0 |
|
|
|
|
fi |
|
|
|
|
acl_should="$( cat "$__object/parameter/acl" )" |
|
|
|
|
elif |
|
|
|
|
[ -f "$__object/parameter/user" ] \ |
|
|
|
|
|| [ -f "$__object/parameter/group" ] \ |
|
|
|
|
|| [ -f "$__object/parameter/mask" ] \ |
|
|
|
|
|| [ -f "$__object/parameter/other" ] |
|
|
|
|
then |
|
|
|
|
acl_should="$( for param in user group mask other |
|
|
|
|
do |
|
|
|
|
[ ! -f "$__object/parameter/$param" ] && continue |
|
|
|
|
|
|
|
|
|
acl_should="$( for parameter in user group mask other |
|
|
|
|
do |
|
|
|
|
if [ ! -f "$__object/parameter/$parameter" ] |
|
|
|
|
then |
|
|
|
|
continue |
|
|
|
|
fi |
|
|
|
|
echo "$param" | grep -Eq 'mask|other' && sep=:: || sep=: |
|
|
|
|
|
|
|
|
|
while read -r acl |
|
|
|
|
do |
|
|
|
|
if echo "$acl" | awk -F: '{ print $NF }' | grep -Fq 'X' |
|
|
|
|
then |
|
|
|
|
[ "$file_is" = 'directory' ] && rep=x || rep=- |
|
|
|
|
echo "$param$sep$( cat "$__object/parameter/$param" )" |
|
|
|
|
done )" |
|
|
|
|
else |
|
|
|
|
echo 'no parameters set' >&2 |
|
|
|
|
exit 1 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
acl="$( echo "$acl" | sed "s/\\(.*\\)X/\\1$rep/" )" |
|
|
|
|
fi |
|
|
|
|
if [ -f "$__object/parameter/default" ] |
|
|
|
|
then |
|
|
|
|
acl_should="$( echo "$acl_should" \ |
|
|
|
|
| sed 's/^default://' \ |
|
|
|
|
| sort -u \ |
|
|
|
|
| sed 's/\(.*\)/default:\1\n\1/' )" |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
echo "$parameter" | grep -Eq '(mask|other)' && sep=:: || sep=: |
|
|
|
|
if [ "$file_is" = 'regular' ] \ |
|
|
|
|
&& echo "$acl_should" | grep -Eq '^default:' |
|
|
|
|
then |
|
|
|
|
# only directories can have default ACLs, |
|
|
|
|
# but instead of error, |
|
|
|
|
# let's just remove default entries |
|
|
|
|
acl_should="$( echo "$acl_should" | grep -Ev '^default:' )" |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
echo "$parameter$sep$acl" |
|
|
|
|
if echo "$acl_should" | awk -F: '{ print $NF }' | grep -Fq 'X' |
|
|
|
|
then |
|
|
|
|
[ "$file_is" = 'directory' ] && rep=x || rep=- |
|
|
|
|
|
|
|
|
|
[ "$set_default" = '1' ] && echo "default:$parameter$sep$acl" |
|
|
|
|
done \ |
|
|
|
|
< "$__object/parameter/$parameter" |
|
|
|
|
done )" |
|
|
|
|
acl_should="$( echo "$acl_should" | sed "s/\\(.*\\)X/\\1$rep/" )" |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
setfacl_exec='setfacl' |
|
|
|
|
|
|
|
|
@ -76,7 +90,7 @@ if [ -f "$__object/parameter/remove" ] |
|
|
|
|
then |
|
|
|
|
echo "$acl_is" | while read -r acl |
|
|
|
|
do |
|
|
|
|
# Skip wanted ACL entries which already exist |
|
|
|
|
# skip wanted ACL entries which already exist |
|
|
|
|
# and skip mask and other entries, because we |
|
|
|
|
# can't actually remove them, but only change. |
|
|
|
|
if echo "$acl_should" | grep -Eq "^$acl" \ |
|
|
|
@ -103,7 +117,7 @@ do |
|
|
|
|
if echo "$os" | grep -Fq 'freebsd' \ |
|
|
|
|
&& echo "$acl" | grep -Eq '^default:' |
|
|
|
|
then |
|
|
|
|
echo "setting default ACL in $os is currently not supported. sorry :(" >&2 |
|
|
|
|
echo "setting default ACL in $os is currently not supported" >&2 |
|
|
|
|
else |
|
|
|
|
echo "$setfacl_exec -m \"$acl\" \"$acl_path\"" |
|
|
|
|
echo "added '$acl'" >> "$__messages_out" |
|
|
|
|