diff options
author | Colin Smith <colin@pfsense.org> | 2005-06-26 04:19:16 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-06-26 04:19:16 +0000 |
commit | d3692dd6be0da16783e708a544c72440bf004cdd (patch) | |
tree | f2fcecc48965b19b9081547d69b76a8883236203 /packages/doorman.xml | |
parent | c5a0e86123c75cc9557120d906a0eb6a6535a8ce (diff) | |
download | pfsense-packages-d3692dd6be0da16783e708a544c72440bf004cdd.tar.gz pfsense-packages-d3692dd6be0da16783e708a544c72440bf004cdd.tar.bz2 pfsense-packages-d3692dd6be0da16783e708a544c72440bf004cdd.zip |
Modify doorman to use new service facilities.
Diffstat (limited to 'packages/doorman.xml')
-rw-r--r-- | packages/doorman.xml | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/packages/doorman.xml b/packages/doorman.xml index cc81fc7a..36b3f7fe 100644 --- a/packages/doorman.xml +++ b/packages/doorman.xml @@ -1,14 +1,19 @@ <packagegui> <name>doorman</name> - <title>Doorman: Settings</title> + <title>doorman: Settings</title> <aftersaveredirect>pkg_edit.php?xml=doorman.xml&id=0</aftersaveredirect> <menu> - <name>Doorman</name> - <tooltiptext>Modify doormand settings and users.</tooltiptext> + <name>doorman</name> + <tooltiptext>Modify doorman settings and users.</tooltiptext> <section>Services</section> <configfile>doorman.xml</configfile> <url>/pkg_edit.php?xml=doorman.xml&id=0</url> </menu> + <service> + <name>doorman</name> + <rcfile>doorman.sh</rcfile> + <executable>doormand</executable> + </service> <tabs> <tab> <text>Settings</text> @@ -65,16 +70,16 @@ </fields> <custom_php_install_command> global $config; - $fout = fopen("/usr/local/etc/rc.d/doormand.sh","w"); - fwrite($fout, "#!/bin/sh\n\n/usr/local/sbin/doormand -D &\n"); - fwrite($fout, "# PACKAGE: Doorman\n"); - fwrite($fout, "# EXECUTABLE: doorman\n"); - fclose($fout); - chmod("/usr/local/etc/rc.d/doormand.sh", 0755); + $start = "/usr/local/sbin/doormand -D &"; + write_rcfile(array( + "file" => "doorman.sh", + "start" => $start, + "stop" => "/usr/bin/killall doormand" + ) + ); </custom_php_install_command> - <custom_php_command_before_form> + <custom_php_global_functions> function sync_package_doorman() { - if ($_POST == "") $_POST = $config['installedpackages']['doorman']['config']; conf_mount_rw(); config_lock(); global $config; @@ -84,7 +89,6 @@ * $int = convert_friendly_interface_to_real_interface_name($_POST['interface']); * fwrite($fout, "interface " . $int . "\n"); */ - fwrite($fout, "interface " . $config['interfaces']['wan']['if'] . "\n"); if($_POST['port'] != "") fwrite($fout, "port " . $_POST['port'] . "\n"); if($_POST['inittimeout'] != "") fwrite($fout, "waitfor " . $_POST['inittimeout'] . "\n"); @@ -96,8 +100,8 @@ mwexec("/usr/local/etc/rc.d/doormand.sh"); conf_mount_ro(); config_unlock(); - } - </custom_php_command_before_form> + } + </custom_php_global_functions> <custom_add_php_command> sync_package_doorman(); </custom_add_php_command> |