14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test -r /etc/sysconfig/config && . /etc/sysconfig/config
|
|
|
|
if test "$MINISATIP" != "yes"; then
|
|
exit 0
|
|
fi
|
|
|
|
cd /tmp
|
|
while test 1 -eq 1; do
|
|
minisatip -f -g $MINISATIP_OPTS
|
|
logger "minisatip exited $?, restarting"
|
|
done
|