diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-28 23:15:12 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-28 23:15:12 +0000 |
commit | 6228aca2cc578a1b31e38ee4fb1176505cac3447 (patch) | |
tree | bb6f401b62f0f778dfae956f10d668a8cd40ee4b | |
parent | e462701c2fa6a352b907f95f2eb78850efbd582c (diff) | |
download | pfsense-packages-6228aca2cc578a1b31e38ee4fb1176505cac3447.tar.gz pfsense-packages-6228aca2cc578a1b31e38ee4fb1176505cac3447.tar.bz2 pfsense-packages-6228aca2cc578a1b31e38ee4fb1176505cac3447.zip |
Dont forgot to mount linux procfs for Hula
-rw-r--r-- | packages/hula.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/hula.xml b/packages/hula.xml index f88f48af..9af46eb2 100644 --- a/packages/hula.xml +++ b/packages/hula.xml @@ -59,6 +59,7 @@ system("rm /usr/local/etc/rc.d/hula.sh"); $fout = fopen("/usr/local/etc/rc.d/hula.sh","w"); fwrite($fout, "#!/bin/sh\n\n"); + fwrite($fout, "/sbin/mount -t linprocfs linprocfs /proc\n"); fwrite($fout, "/usr/local/hula/sbin/hulamanager &\n"); fclose($fout); system("chmod 555 /usr/local/etc/rc.d/hula.sh &"); |