df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
10 lines
190 B
Bash
Executable file
10 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PID=""
|
|
PROG="pppd call dsl-provider"
|
|
PID=`ps ax | grep "$PROG" | grep -v grep | awk '{ print $1 }'`
|
|
|
|
if [ -z "$PID" ]; then
|
|
echo "Starte Internet neu"
|
|
pppd call dsl-provider
|
|
fi
|