File: ip-down

package info (click to toggle)
fetchmail 6.3.6-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 6,336 kB
  • ctags: 3,609
  • sloc: ansic: 26,407; sh: 4,967; perl: 3,180; python: 1,920; yacc: 448; makefile: 331; lex: 277; awk: 124; lisp: 84; sed: 16
file content (17 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# Default fetchmail ip-down script (/etc/ppp/ip-down.d/fetchmail)
#
# Remove the "exit 0" line if you want only want to run fetchmail when the
# PPP link is up.
#

exit 0

if [ -x /etc/init.d/fetchmail ]; then
	if [ -x /usr/sbin/invoke-rc.d ]; then
		invoke-rc.d --quiet fetchmail stop || true
	else
		/etc/init.d/fetchmail stop || true
	fi
fi