aboutsummaryrefslogtreecommitdiffstats
path: root/packages/avahi/avahi.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/avahi/avahi.inc')
-rw-r--r--packages/avahi/avahi.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/avahi/avahi.inc b/packages/avahi/avahi.inc
index 9d61bd0a..564b129a 100644
--- a/packages/avahi/avahi.inc
+++ b/packages/avahi/avahi.inc
@@ -143,7 +143,10 @@ EOF;
fwrite($fd, $avahiconfig);
fclose($fd);
/* Write out rc.d startup file */
- $start = "if [ ! -d /proc ]; then\n mount -t procfs procfs /proc\nfi\n/usr/local/sbin/avahi-daemon -D";
+ $start = "if [ ! -d /proc/0 ]; then\n";
+ $start .= " mount -t procfs procfs /proc\n";
+ $start .= "fi\n";
+ $start .= "/usr/local/sbin/avahi-daemon -D\n";
$stop = "/usr/bin/killall avahi-daemon";
write_rcfile(array(
"file" => "avahi-daemon.sh",