annotate debian/ip-down @ 357:b0ee77fa24d4 noffle

[svn] * src/post.c,src/configfile.c,src/configfile.h,docs/noffle.conf.5, noffle.conf.example,TODO: Added a config value to specify whether a Reply-To header should be appended to messages posted without it. Also made the new option show up in the noffle.conf manpage and the initial example configuration shipped with the package.
author bears
date Mon, 24 Mar 2003 23:32:48 +0000
parents 53b3cb6cae3d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
301
3b5b7f3fd71f [svn] initial debian/ upload
godisch
parents:
diff changeset
1 #!/bin/sh
3b5b7f3fd71f [svn] initial debian/ upload
godisch
parents:
diff changeset
2
334
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
3 set -e
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
4
301
3b5b7f3fd71f [svn] initial debian/ upload
godisch
parents:
diff changeset
5 # 'ppp' should be a sane default here
3b5b7f3fd71f [svn] initial debian/ upload
godisch
parents:
diff changeset
6 NOFFLE_FETCHMODE=ppp
334
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
7
340
53b3cb6cae3d [svn] cleanup
godisch
parents: 334
diff changeset
8 [ -f /etc/default/noffle ] && . /etc/default/noffle || :
301
3b5b7f3fd71f [svn] initial debian/ upload
godisch
parents:
diff changeset
9
334
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
10 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
11 /usr/bin/noffle --offline
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
12 fi
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
13
08222dbe6eb0 [svn] cleanup
godisch
parents: 301
diff changeset
14 exit 0