- Fixed dhcprelay scripts to source sysconfig file correctly

- Fixed spec file typo in arping path require

OBS-URL: https://build.opensuse.org/package/show/network:dhcp/dhcp?expand=0&rev=18
This commit is contained in:
Marius Tomaschewski 2010-05-07 22:46:02 +00:00 committed by Git OBS Bridge
parent 5a5ec5c642
commit 592e0f6f6f
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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