diff --git a/dhcp.changes b/dhcp.changes index dd3512e..ddb9a33 100644 --- a/dhcp.changes +++ b/dhcp.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri May 7 22:44:52 UTC 2010 - mt@suse.de + +- Fixed dhcprelay scripts to source sysconfig file correctly +- Fixed spec file typo in arping path require + ------------------------------------------------------------------- Fri May 7 14:10:21 UTC 2010 - mt@suse.de diff --git a/rc.dhcrelay b/rc.dhcrelay index bf6779b..47c49d2 100644 --- a/rc.dhcrelay +++ b/rc.dhcrelay @@ -32,7 +32,7 @@ DAEMON_PIDFILE=/var/run/dhcrelay.pid STARTPROC_LOGFILE=/var/log/rc.dhcrelay.log SUPPORTS_HUP="no" -test -s "$DAEMON_CONF" && "$DAEMON_CONF" +test -s "$DAEMON_CONF" && . "$DAEMON_CONF" test -x $DAEMON_BIN || { echo >&2 "$0: \"$DAEMON_BIN\" is not executable." test "x$1" = xstop && exit 0 || exit 5 diff --git a/rc.dhcrelay6 b/rc.dhcrelay6 index 0207ed7..ddecca8 100644 --- a/rc.dhcrelay6 +++ b/rc.dhcrelay6 @@ -33,7 +33,7 @@ DAEMON_PIDFILE=/var/run/dhcrelay6.pid STARTPROC_LOGFILE=/var/log/rc.dhcrelay6.log SUPPORTS_HUP="no" -test -s "$DAEMON_CONF" && "$DAEMON_CONF" +test -s "$DAEMON_CONF" && . "$DAEMON_CONF" test -x $DAEMON_BIN || { echo >&2 "$0: \"$DAEMON_BIN\" is not executable." test "x$1" = xstop && exit 0 || exit 5