summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-09-02 16:35:18 +0000
committerLennart Poettering <lennart@poettering.net>2006-09-02 16:35:18 +0000
commit9c881d484a3c54c6ba884e0eaeb2f8c77fc561db (patch)
tree559290975ff38c0d5d204897dab28c512f0b62c8
parent4638c9afcb14dffca2d0f1749660c68a14f9f65d (diff)
remove "set -e" from the hook scripts since this apparently breaks stuff in the main hook script
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1313 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rwxr-xr-xavahi-autoipd/dhclient-enter-hook.in2
-rwxr-xr-xavahi-autoipd/dhclient-exit-hook.in4
2 files changed, 1 insertions, 5 deletions
diff --git a/avahi-autoipd/dhclient-enter-hook.in b/avahi-autoipd/dhclient-enter-hook.in
index 8efd468..0c274b9 100755
--- a/avahi-autoipd/dhclient-enter-hook.in
+++ b/avahi-autoipd/dhclient-enter-hook.in
@@ -19,8 +19,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-set -e
-
case "$reason" in
MEDIUM|ARPCHECK|ARPSEND|NBI)
;;
diff --git a/avahi-autoipd/dhclient-exit-hook.in b/avahi-autoipd/dhclient-exit-hook.in
index a844b77..4f7167e 100755
--- a/avahi-autoipd/dhclient-exit-hook.in
+++ b/avahi-autoipd/dhclient-exit-hook.in
@@ -19,14 +19,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-set -e
-
case "$reason" in
MEDIUM|ARPCHECK|ARPSEND|NBI)
;;
PREINIT|BOUND|RENEW|REBIND|REBOOT|STOP)
- # Stoping avahi-autoipd is left for the enter hook
+ # Stopping avahi-autoipd is left for the enter hook
;;
EXPIRE|FAIL|RELEASE|TIMEOUT)