| Server IP : 189.126.111.107 / Your IP : 216.73.217.69 Web Server : Apache System : Linux www.gadotticar.com.br 5.4.0-135-generic #152-Ubuntu SMP Wed Nov 23 20:19:22 UTC 2022 x86_64 User : gadotticar ( 1000) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/fusionpbx-install.sh/debian/resources/ |
Upload File : |
#!/bin/sh #move to script directory so all relative paths work cd "$(dirname "$0")" #includes . ./config.sh . ./environment.sh if [ .$switch_source = .true ]; then if [ ."$switch_branch" = "master" ]; then echo "MASTER" switch/source-master.sh else echo "RELEASE" switch/source-release.sh fi #add sounds and music files switch/source-sounds.sh #copy the switch conf files to /etc/freeswitch switch/conf-copy.sh #set the file permissions #switch/source-permissions.sh switch/package-permissions.sh #systemd service #switch/source-systemd.sh switch/package-systemd.sh fi if [ .$switch_package = .true ]; then if [ ."$switch_branch" = "master" ]; then if [ .$switch_package_all = .true ]; then switch/package-master-all.sh else switch/package-master.sh fi else if [ .$switch_package_all = .true ]; then switch/package-all.sh else switch/package-release.sh fi fi #copy the switch conf files to /etc/freeswitch switch/conf-copy.sh #set the file permissions switch/package-permissions.sh #systemd service switch/package-systemd.sh fi