view debian/ip-up @ 462:de7f674d1224 noffle

[svn] * src/log.c: Rename log structure to logSettings to remove warning about hiding built-in from GCC 3.3.1.
author bears
date Wed, 23 Jul 2003 10:26:49 +0100
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