#!/bin/sh
### BEGIN INIT INFO
# Provides: Init UE
# Required-Start: $local_fs $network $named $time $syslog
# Required-Stop: $local_fs $network $named $time $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Init UE
### END INIT INFO
case "$1" in
start)
bash /opt/keep-ue-alive.sh 2>> /opt/keep-ue-alive.log >> /opt/keep-ue-alive.log &
;;
*)
true
esac
-
Joanne Hugé authored8145ecb3