view debian/ip-up @ 430:5e0bae88ae3d noffle

[svn] switch back to 1.1.4-9
author godisch
date Mon, 23 Jun 2003 09:52:22 +0100 (2003-06-23)
parents 146e6cfe86ba
children
line wrap: on
line source
#!/bin/sh

set -e

# 'ppp' should be a sane default here
NOFFLE_FETCHMODE=ppp

[ -f /etc/default/noffle ] && . /etc/default/noffle || :

if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
	/usr/bin/noffle --online
	/usr/bin/noffle --fetch &
fi

exit 0