grav-lecampus/fixperms.sh

9 lines
219 B
Bash
Raw Normal View History

2019-04-02 18:42:11 +02:00
#!/bin/sh
chgrp www-data .
chgrp -R www-data *
2021-06-11 12:34:21 +02:00
find . -type f -exec chmod 664 {} \;
find ./bin -type f -exec chmod 775 {} \;
find . -type d -exec chmod 775 {} \;
find . -type d -exec chmod +s {} \;
chmod +x fixperms.sh