chmod: remove useless variables & setfacl & wwwuser

setfacl was used to give HTTPd write permission, but setfacl cannot do
that, because it can only give permissions which group has and group has
only permissions to read and execute, not write.

Someone should check if things in this script are even sane.
This commit is contained in:
Mikaela Suomalainen 2014-09-19 19:28:20 +03:00
parent 39899096cd
commit 621f44daca
2 changed files with 0 additions and 13 deletions

12
chmod
View File

@ -6,12 +6,6 @@
## https://raw.github.com/Mkaysi/shell-things/master/chmod
set -x
GROUP=$(id -gn)
wwwdata=$(head -n1 wwwuser)
setfacl=$(locate setfacl|grep bin|head -n1)
chmod g-rwx,o-rwx $HOME -R
touch ~/.oidentd.conf
@ -27,16 +21,10 @@ chmod -R 755 ~/public_html/
touch ~/.face
touch ~/.forward
touch ~/.netrc
echo ""
chmod a+r-wx,u+rw ~/.face
chmod a+r-wx,u+rw ~/.forward
chmod 600 ~/.netrc
if [[ -f $setfacl ]]; then
setfacl -R -m u:$wwwdata:rwx ~/public_html
setfacl -R -m d:u:$wwwdata:rwx ~/public_html
fi
if [ -f chmod.2 ]; then
./chmod.2
fi

View File

@ -1 +0,0 @@
www-data