You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
224 B
17 lines
224 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
. /etc/init.d/globals
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
4 years ago
|
if [ -e /var/etc/rc.local ]; then
|
||
|
/var/etc/rc.local
|
||
|
elif [ -e /etc/rc.local ]; then
|
||
|
/etc/rc.local
|
||
|
fi
|
||
4 years ago
|
;;
|
||
|
*)
|
||
|
echo "[${BASENAME}] Usage: $0 {start}"
|
||
|
;;
|
||
|
esac
|