-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added machine params nachlaufzeit & watchdog
- Loading branch information
Showing
5 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# To autostart the InfoDisplay on Synology NAS, you need to copy this file to /etc/init | ||
|
||
# only start this service after the httpd user process has started | ||
#start on syno.network.ready | ||
start on runlevel 2 | ||
|
||
# stop the service gracefully if the runlevel changes to 'reboot' | ||
stop on runlevel [06] | ||
|
||
# run the scripts as the 'admin' user. Running as root (the default) is a bad idea. | ||
setuid admin | ||
|
||
# exec the process. Use fully formed path names so that there is no reliance on $PATH | ||
# the 'www' file is a node.js script which starts the foobar application. | ||
exec /usr/bin/node /var/services/web/access_auth_server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Zum Starten und Stoppen des Access Auth Servers gibt es unter /usr/local/etc/rc.d/ das script access_auth_server.sh. | ||
|
||
Start: sudo ./access_auth_server.sh start | ||
Stop: sudo ./access_auth_server.sh stop | ||
Restart: sudo ./access_auth_server.sh restart | ||
Status: sudo ./access_auth_server.sh status | ||
|
||
Dieses Script sorgt auch daf�r, dass der Server beim Booten gestartet wird. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters