2017-04-24 23:31:25 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2017-03-25 18:41:47 +01:00
|
|
|
#setup owner and group, permissions and sticky
|
2017-03-25 22:14:21 +01:00
|
|
|
chown -R www:www /usr/local/freeswitch
|
2017-03-25 18:41:47 +01:00
|
|
|
chmod -R ug+rw /usr/local/freeswitch
|
2017-03-25 22:14:21 +01:00
|
|
|
#touch /var/log/freeswitch/freeswitch.log
|
|
|
|
|
#chown -R www:www /var/log/freeswitch
|
2017-03-25 18:41:47 +01:00
|
|
|
find /usr/local/freeswitch -type d -exec chmod 2770 {} \;
|