__acl: avoid duplication and safer sed for last occurence replacement

remotes/katolaz/master
Ander Punnar 6 years ago
parent 8b3c84dfef
commit 7924c1339c
  1. 6
      cdist/conf/type/__acl/gencode-remote

@ -41,10 +41,12 @@ do
then
if [ "$is_dir" = '1' ]
then
acl="$( echo "$acl" | sed 's/X$/x/' )"
rep=x
else
acl="$( echo "$acl" | sed 's/X$/-/' )"
rep=-
fi
acl="$( echo "$acl" | sed -r "s/(.*)X/\1$rep/" )"
fi
if echo "$parameter" | grep -Eq '(mask|other)'

Loading…
Cancel
Save