From 2e314c016e12fdfaa5098c1de7b1376f65fc37c8 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 7 Feb 2019 18:17:20 +0100 Subject: [PATCH] interfaces: push dhclient and dhcp6c to system log Easier to see what's going on, both trigger most system reconfigure events anyway. PR: https://github.com/opnsense/core/issues/3197 Discussed with: @adschellevis --- src/etc/inc/system.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index cd04f9a88..00b84b358 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -683,7 +683,7 @@ function system_syslogd_start($verbose = false, $restart = false) * the key as a "name" entry in the array... */ $syslogconfs['configd'] = array('facility' => array('configd.py')); - $syslogconfs['dhcpd'] = array('facility' => array('dhcpd', 'dhcrelay', 'dhclient', 'dhcp6c'), 'local' => '/var/dhcpd/var/run/log', 'remote' => 'dhcp'); + $syslogconfs['dhcpd'] = array('facility' => array('dhcpd', 'dhcrelay'), 'local' => '/var/dhcpd/var/run/log', 'remote' => 'dhcp'); $syslogconfs['filter'] = array('facility' => array('filterlog'), 'remote' => 'filter'); $syslogconfs['gateways'] = array('facility' => array('dpinger'), 'remote' => 'apinger'); $syslogconfs['lighttpd'] = array('facility' => array('lighttpd'));