This commit is contained in:
2019-04-02 18:42:11 +02:00
parent b0e25fd66f
commit 14139c7bc8
80 changed files with 799 additions and 209 deletions

8
fixperms.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
chgrp www-data .
chgrp -R www-data *
sh -c "find . -type f | xargs chmod 664"
sh -c "find ./bin -type f | xargs chmod 775"
sh -c "find . -type d | xargs chmod 775"
sh -c "find . -type d | xargs chmod +s"
sh -c "umask 0002"