comparison debian/ip-up @ 340:53b3cb6cae3d noffle

[svn] cleanup
author godisch
date Tue, 04 Mar 2003 21:20:07 +0000
parents 08222dbe6eb0
children 146e6cfe86ba
comparison
equal deleted inserted replaced
339:ff1945b26212 340:53b3cb6cae3d
3 set -e 3 set -e
4 4
5 # 'ppp' should be a sane default here 5 # 'ppp' should be a sane default here
6 NOFFLE_FETCHMODE=ppp 6 NOFFLE_FETCHMODE=ppp
7 7
8 if [ -f /etc/default/noffle ]; then 8 [ -f /etc/default/noffle ] && . /etc/default/noffle || :
9 . /etc/default/noffle
10 fi
11 9
12 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then 10 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
13 (/usr/bin/noffle --online; nohup /usr/bin/noffle --fetch) & 11 (/usr/bin/noffle --online; nohup /usr/bin/noffle --fetch) &
14 fi 12 fi
15 13