aboutsummaryrefslogtreecommitdiffstats
path: root/debian/fetchmail.ppp.ip-down
blob: 75d0cfbeef8c81b5b463f8e7d636747642434558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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
    invoke-rc.d --quiet fetchmail stop || true
fi