diff options
author | Mark Crane <mcrane@pfsense.org> | 2009-01-29 20:34:36 +0000 |
---|---|---|
committer | Mark Crane <mcrane@pfsense.org> | 2009-01-29 20:34:36 +0000 |
commit | 05ab46353f2460d272082cc43a41c99f5fdc4637 (patch) | |
tree | 2dbbc2ef9c8f94485ce4b064af82d5f5b10dc395 /packages/freeswitch/freeswitch_status.tmp | |
parent | 975eda5b2e920f63c069f351580b8138a01d13b9 (diff) | |
download | pfsense-packages-05ab46353f2460d272082cc43a41c99f5fdc4637.tar.gz pfsense-packages-05ab46353f2460d272082cc43a41c99f5fdc4637.tar.bz2 pfsense-packages-05ab46353f2460d272082cc43a41c99f5fdc4637.zip |
FreeSWITCH package check to see if the FreeSWITCH service is running before displaying the 'Status' tab start it automatically if it is not started.
Diffstat (limited to 'packages/freeswitch/freeswitch_status.tmp')
-rw-r--r-- | packages/freeswitch/freeswitch_status.tmp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/freeswitch/freeswitch_status.tmp b/packages/freeswitch/freeswitch_status.tmp index 07128835..2d84a6ec 100644 --- a/packages/freeswitch/freeswitch_status.tmp +++ b/packages/freeswitch/freeswitch_status.tmp @@ -97,6 +97,12 @@ $port = $config['installedpackages']['freeswitchsettings']['config'][0]['event_s $host = $config['interfaces']['lan']['ipaddr']; $savemsg = $_GET["savemsg"]; + +//if freeswitch is not running then start it +if (!pkg_is_service_running('freeswitch')) { + $handle = popen("/usr/local/etc/rc.d/freeswitch.sh start", "r"); + pclose($handle); +} ?> <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> |