From e618bc9a0c0aa99b31fad259107f3933de8542a0 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Aug 23 2008 21:05:07 +0000 Subject: - Fix syntax error in dhclient-script (#459860) --- diff --git a/dhcp.spec b/dhcp.spec index ec45a48..a7cc883 100644 --- a/dhcp.spec +++ b/dhcp.spec @@ -4,7 +4,7 @@ Summary: DHCP (Dynamic Host Configuration Protocol) server and relay agent Name: dhcp Version: 4.0.0 -Release: 20%{?dist} +Release: 21%{?dist} # NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to # dcantrell maintaining the package) made incorrect use of the epoch and # that's why it is at 12 now. It should have never been used, but it was. @@ -440,6 +440,9 @@ fi %{_libdir}/libdhcp4client.so %changelog +* Sat Aug 23 2008 David Cantrell - 12:4.0.0-21 +- Fix syntax error in dhclient-script (#459860) + * Fri Aug 22 2008 David Cantrell - 12:4.0.0-20 - Rewrite of /sbin/dhclient-script (make the script a little more readable, discontinue use of ifconfig in favor of ip, store backup copies of orig diff --git a/linux b/linux index 23cf195..29d6b1a 100755 --- a/linux +++ b/linux @@ -423,7 +423,7 @@ if [ -x /etc/dhclient-enter-hooks ]; then if [ ${exit_status} -ne 0 ]; then exit ${exit_status} fi -} +fi if [ ! -r /etc/sysconfig/network-scripts/network-functions ]; then echo "Missing /etc/sysconfig/network-scripts/network-functions, exiting." >&2