diff options
author | mcrane <mctch@yahoo.com> | 2009-08-25 15:52:05 -0600 |
---|---|---|
committer | mcrane <mctch@yahoo.com> | 2009-08-25 15:53:23 -0600 |
commit | f4da69b1577aab50790745a7b82fa373c6fcaeed (patch) | |
tree | 0fbb290b1942c4716059e0e75cb013257e59c64b /config/freeswitch_dev | |
parent | c3592111b51ff3ff2a7167aca714af36b1d50fab (diff) | |
download | pfsense-packages-f4da69b1577aab50790745a7b82fa373c6fcaeed.tar.gz pfsense-packages-f4da69b1577aab50790745a7b82fa373c6fcaeed.tar.bz2 pfsense-packages-f4da69b1577aab50790745a7b82fa373c6fcaeed.zip |
TFTP package fix uninstall error. And fix installation on pfsense 2.0.
Diffstat (limited to 'config/freeswitch_dev')
-rw-r--r-- | config/freeswitch_dev/v_config.inc | 4 | ||||
-rw-r--r-- | config/freeswitch_dev/v_status.tmp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/freeswitch_dev/v_config.inc b/config/freeswitch_dev/v_config.inc index a3573ba9..3b3e093c 100644 --- a/config/freeswitch_dev/v_config.inc +++ b/config/freeswitch_dev/v_config.inc @@ -3907,8 +3907,8 @@ function v_install_phase_1() write_rcfile(array( "file" => $v_name.".sh", - "start" => $v_dir."/bin/./freeswitch -nc", - "stop" => $v_dir."/bin/./freeswitch -stop" + "start" => $v_dir."/bin/./".$v_name." -nc", + "stop" => $v_dir."/bin/./".$v_name." -stop" ) ); diff --git a/config/freeswitch_dev/v_status.tmp b/config/freeswitch_dev/v_status.tmp index 70cef363..3a3d6097 100644 --- a/config/freeswitch_dev/v_status.tmp +++ b/config/freeswitch_dev/v_status.tmp @@ -351,7 +351,7 @@ echo "<br /><br />\n\n"; echo "<b>tail -n 500 ".$v_log_dir."/".$v_name.".log</b><br />\n"; -echo "<textarea id='log' name='log' cols='93' rows='30' wrap='off'>\n"; +echo "<textarea id='log' name='log' style='width:99%'; rows='30' wrap='off'>\n"; echo system("tail -n 500 ".$v_log_dir."/".$v_name.".log"); echo "</textarea>\n"; echo "<br /><br />\n\n"; |