diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-30 18:28:31 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-30 18:28:40 -0500 |
commit | be9303aca20d0df5e2d3577107829ba55ed355cf (patch) | |
tree | 5d6c84ad1a0b8b32b7f5d79953ee505b01991e63 /etc | |
parent | a4fe5cac4ce924e25025b79f7cd5570afef8bebd (diff) | |
download | pfsense-be9303aca20d0df5e2d3577107829ba55ed355cf.zip pfsense-be9303aca20d0df5e2d3577107829ba55ed355cf.tar.gz |
Unbreak Status -> System Logs -> DHCP due to chroot and new version of DHCPD.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/system.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 65f48d2..7a1b3b2 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -622,12 +622,12 @@ EOD; fclose($fd); // Are we logging to a least one remote server ? if(strpos($syslogconf, "@") != false) - $retval = system("/usr/sbin/syslogd -c -f {$g['varetc_path']}/syslog.conf"); + $retval = system("/usr/sbin/syslogd -c -p /var/dhcpd/var/run/log -f {$g['varetc_path']}/syslog.conf"); else - $retval = system("/usr/sbin/syslogd -c -f {$g['varetc_path']}/syslog.conf"); + $retval = system("/usr/sbin/syslogd -c -p /var/dhcpd/var/run/log -f {$g['varetc_path']}/syslog.conf"); } else { - $retval = mwexec("/usr/sbin/syslogd -c"); + $retval = mwexec("/usr/sbin/syslogd -c -p /var/dhcpd/var/run/log"); } if ($g['booting']) |