Skip to content

Commit

Permalink
- add install target to Makefile
Browse files Browse the repository at this point in the history
- add sample init script (shairport.init.sample)
  • Loading branch information
mag- committed Apr 14, 2011
1 parent 81cf4e1 commit bd263d7
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,11 @@ clean:

.PTHONY: all clean

prefix=/usr/local
install: hairtunes
install -m 0755 hairtunes $(prefix)/bin
install -m 0755 shairport.pl $(prefix)/bin
.PHONY: install

.SILENT: clean

67 changes: 67 additions & 0 deletions shairport.init.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/bash
#
# This starts and stops shairport
#
### BEGIN INIT INFO
# Provides: shairport
# Required-Start: $network
# Required-Stop:
# Short-Description: shairport - Airtunes emulator!
# Description: Airtunes emulator!
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO


# Source function library.
. /lib/lsb/init-functions

NAME=shairport
DAEMON="/usr/local/bin/shairport.pl"
DAEMON_ARGS=""
PIDFILE=/var/run/$NAME.pid

[ -x $binary ] || exit 0

RETVAL=0

start() {
echo -n "Starting shairport: "
start-stop-daemon --start --quiet --pidfile "$PIDFILE" \
--exec "$DAEMON" -b --oknodo -- $DAEMON_ARGS
log_end_msg $?
}

stop() {
echo -n "Shutting down shairport: "
start-stop-daemon --stop --quiet --pidfile "$PIDFILE" \
--retry 1 --oknodo
log_end_msg $?
}

restart() {
stop
sleep 1
start
}

case "$1" in
start)
start
;;
stop)
stop
;;
status)
status shairport
;;
restart)
restart
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
;;
esac

exit 0

0 comments on commit bd263d7

Please sign in to comment.