From 09b6e906abcaf7bb42fe2b06f04a78bf72c27c11 Mon Sep 17 00:00:00 2001 From: svxf Date: Sun, 28 Oct 2018 01:02:03 +0400 Subject: [PATCH] update myfacl --- .zprezto/abra/functions.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zprezto/abra/functions.zsh b/.zprezto/abra/functions.zsh index fffad02..50b8f1b 100644 --- a/.zprezto/abra/functions.zsh +++ b/.zprezto/abra/functions.zsh @@ -7,14 +7,14 @@ function myfacl { fi chown -R "${1}:${1}" "${@:2}" - chmod -R u=rwX,g=rX,o= "${@:2}" + chmod -R u=rwX,g=rwX,o= "${@:2}" setfacl -Rb "${@:2}" setfacl -Rm "\ user:${1}:rwX,\ default:user:${1}:rwX,\ -group:${1}:rX,\ -default:group:${1}:rX,\ +group:${1}:rwX,\ +default:group:${1}:rwX,\ other::0,\ default:other::0\ " "${@:2}"