diff options
-rw-r--r-- | packages/frickin.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/frickin.xml b/packages/frickin.xml index 775937c8..8c04e6dc 100644 --- a/packages/frickin.xml +++ b/packages/frickin.xml @@ -50,6 +50,18 @@ <custom_add_php_command> sync_package_frickin(); </custom_add_php_command> + <custom_php_install_command> + $fout = fopen("/usr/local/etc/rc.d/frickin.sh", "w"); + fwrite($fout, "#!/bin/sh\n# This package was automatically generated\n# by the pfSense package system.\n\n"); + fwrite($fout, "/usr/local/bin/frickin"); + fwrite($fout, " -s 127.0.0.1"); + fwrite($fout, " -c 20"); + fwrite($fout, " &\n"); + fclose($fout); + mwexec("/usr/bin/killall frickin"); + mwexec("chmod a+rx /usr/local/etc/rc.d/frickin.sh"); + mwexec("/usr/local/etc/rc.d/frickin.sh"); + </custom_php_install_command> <custom_php_deinstall_command> unlink_if_exists("/usr/local/etc/rc.d/frickin.sh"); unlink_if_exists("/usr/local/bin/frickin"); |