6 lines
210 B
Plaintext
6 lines
210 B
Plaintext
|
#!/bin/bash
|
||
|
chown -P -R DarkFeather:http /srv/yggdrasil
|
||
|
find -P /srv/yggdrasil/ -type f -exec chmod 0440 {} \;
|
||
|
find -P /srv/yggdrasil/ -type d -exec chmod 0550 {} \;
|
||
|
chmod -R u+w /srv/yggdrasil/new_acquisition
|