Files
grav-labonneadresse.graphics/fixperms.sh
T

9 lines
269 B
Bash

#!/bin/sh
sudo chown bach:http .
sudo chown -R bach:http *
sudo sh -c "find . -type f | xargs chmod 664"
sudo sh -c "find ./bin -type f | xargs chmod 775"
sudo sh -c "find . -type d | xargs chmod 775"
sudo sh -c "find . -type d | xargs chmod +s"
sudo sh -c"umask 0002"