]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame_incremental - src/scripts/morningreconnect
Hinzugefuegt:
[people/teissler/ipfire-2.x.git] / src / scripts / morningreconnect
... / ...
CommitLineData
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
11if [ -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
16fi
17
18# end