vanhofen
4 years ago
3 changed files with 32 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||
|
#!/bin/sh -e |
||||
|
# |
||||
|
# rc.local |
||||
|
# |
||||
|
# This script is executed at the end of each multiuser runlevel. |
||||
|
# Make sure that the script will "exit 0" on success or any other |
||||
|
# value on error. |
||||
|
# |
||||
|
# In order to enable or disable this script just change the execution |
||||
|
# bits. |
||||
|
# |
||||
|
# By default this script does nothing. |
||||
|
|
||||
|
exit 0 |
@ -0,0 +1,12 @@ |
|||||
|
#!/bin/sh |
||||
|
|
||||
|
. /etc/init.d/globals |
||||
|
|
||||
|
case $1 in |
||||
|
start) |
||||
|
/etc/rc.local |
||||
|
;; |
||||
|
*) |
||||
|
echo "[${BASENAME}] Usage: $0 {start}" |
||||
|
;; |
||||
|
esac |
Loading…
Reference in new issue