# HG changeset patch
# User godisch
# Date 1046812807 0
# Node ID 53b3cb6cae3d49f0be920f45a9d8572eaf5153bb
# Parent  ff1945b262125f21986ba54b63e220aa7e326b48
[svn] cleanup

diff -r ff1945b26212 -r 53b3cb6cae3d debian/ip-down
--- a/debian/ip-down	Tue Mar 04 21:08:27 2003 +0000
+++ b/debian/ip-down	Tue Mar 04 21:20:07 2003 +0000
@@ -5,9 +5,7 @@
 # 'ppp' should be a sane default here
 NOFFLE_FETCHMODE=ppp
 
-if [ -f /etc/default/noffle ]; then
-	. /etc/default/noffle
-fi
+[ -f /etc/default/noffle ] && . /etc/default/noffle || :
 
 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
 	/usr/bin/noffle --offline
diff -r ff1945b26212 -r 53b3cb6cae3d debian/ip-up
--- a/debian/ip-up	Tue Mar 04 21:08:27 2003 +0000
+++ b/debian/ip-up	Tue Mar 04 21:20:07 2003 +0000
@@ -5,9 +5,7 @@
 # 'ppp' should be a sane default here
 NOFFLE_FETCHMODE=ppp
 
-if [ -f /etc/default/noffle ]; then
-	. /etc/default/noffle
-fi
+[ -f /etc/default/noffle ] && . /etc/default/noffle || :
 
 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
 	(/usr/bin/noffle --online; nohup /usr/bin/noffle --fetch) &