Initial permission changes

added use of getopt to allow command line options to indicate to use different sources

added +x
This commit is contained in:
mafoo
2016-05-26 11:55:14 +01:00
parent 75fb2385eb
commit bef7c9b4b2
14 changed files with 138 additions and 117 deletions

View File

@@ -0,0 +1,8 @@
#add users to the groups
usermod -a -G freeswitch www-data
usermod -a -G www-data freeswitch
#setup owner and group, permissions and sticky
chown -R freeswitch:freeswitch /usr/local/freeswitch
chmod -R ug+rw /usr/local/freeswitch
find /usr/local/freeswitch -type d -exec chmod 2770 {} \;