]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/scripts/morningreconnect
Hinzugefuegt:
[people/pmueller/ipfire-2.x.git] / src / scripts / morningreconnect
1 #!/bin/bash
2 #
3 # IPFire SCRIPTs
4 #
5 # This code is distributed under the terms of the GPL
6 #
7 # (c) The IPFire Team
8
9 # begin
10
11 if [ -e "/var/ipfire/ppp/morningreconnect" ]; then
12 logger -t ipfire MorningReconnect executed!
13 /etc/rc.d/rc.red stop
14 /bin/sleep 10
15 /etc/rc.d/rc.red start
16 fi
17
18 # end