diff options
-rw-r--r-- | packages/doorman.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/doorman.xml b/packages/doorman.xml index 45120e37..60b9b7c9 100644 --- a/packages/doorman.xml +++ b/packages/doorman.xml @@ -66,7 +66,7 @@ <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, "#!/bin/sh\n\n/usr/local/sbin/doormand -D &\n"); fclose($fout); mwexec("chmod a+x /usr/local/etc/rc.d/doormand.sh"); </custom_php_install_command> |