This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from mondada/master
NetSUSLP 5.0
- Loading branch information
Showing
572 changed files
with
25,304 additions
and
8,247 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ motd.legal-displayed | |
packer_cache | ||
output-virtualbox-iso | ||
|
||
*.iso |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,57 @@ | ||
#!/bin/sh | ||
|
||
### BEGIN INIT INFO | ||
# Provides: pybsdp | ||
# Required-Start: $network | ||
# Required-Stop: $network | ||
# Default-Start: 2 3 4 5 | ||
# Default-Stop: 0 1 6 | ||
# Short-Description: BSDP NetBoot Service | ||
# Description: pybsdp provides the Boot Service Discovery Protocol (BSDP) | ||
# server. | ||
### END INIT INFO | ||
|
||
EXEC=/usr/local/sbin/pybsdp | ||
NAME=pybsdp | ||
|
||
# Add any command line options for your daemon here | ||
OPTS="" | ||
|
||
# This next line determines what user the script runs as. | ||
USER=root | ||
|
||
# The process ID of the script when it runs is stored here: | ||
PIDFILE=/var/run/$NAME.pid | ||
|
||
. /lib/lsb/init-functions | ||
|
||
case "$1" in | ||
|
||
start) | ||
log_daemon_msg "Starting $NAME daemon" | ||
start-stop-daemon --start --background --pidfile $PIDFILE --make-pidfile --user $USER --chuid $USER --startas $EXEC -- $OPTS | ||
log_end_msg $? | ||
;; | ||
|
||
stop) | ||
log_daemon_msg "Stopping $NAME daemon" | ||
start-stop-daemon --stop --pidfile $PIDFILE --retry 10 | ||
log_end_msg $? | ||
;; | ||
|
||
restart|reload|force-reload) | ||
$0 stop | ||
$0 start | ||
;; | ||
|
||
status) | ||
status_of_proc "$NAME" "$EXEC" && exit 0 || exit $? | ||
;; | ||
|
||
*) | ||
echo "Usage: /etc/init.d/$NAME {start|stop|restart|status}" | ||
exit 1 | ||
;; | ||
|
||
esac | ||
exit 0 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.