mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
0940872870
* implement make install set CMAKE_INSTALL_PREFIX e.g. to /opt to install to /opt/hyperion set ENABLE_SYSTEM_INSTALL to ON to activate installation after compiling use make install or make install/strip (for performance/size optimized binaries - compile in Release to get best performance) * cleanup cmake files use cmake -DINSTALL_PREFIX=/opt/hyperion .. to install all files to hyperion or cmake -DINSTALL_PREFIX=/usr/ to install to usr. install folders are linux standard. bin go to bin folder and additionals (effects) go to share/hyperion * add uninstall target - be patient with that, this will remove files from your system install service files to share/hyperion - if you want to use them you have to make a symlink to your location of service files * optimize build release script install service files into hyperion share folder (services not activated, this must be done by distribution package script) initial support of cmake option -DPLATFORM= option. This selects platform specific cmake flags. no need for -DENABLE_... options (unless you want some special things) automatic detect for apple build * update submodule * fix cmake error when no platform is given * initial support for deb,rpm and tgz packages - no usefull content atm! * make packeages contain usefull stuff * add license make packes more functional. package specific install missing yet * implement debian postinstall * disable rpm generation until it has a working state * add hypercon compat * add posibility for multiple config files. first one found is taken Former-commit-id: 1c2669961da98fd05a97359e75f1d6d68e126715
84 lines
2.2 KiB
Bash
84 lines
2.2 KiB
Bash
#!/bin/bash
|
|
# Hyperion daemon service
|
|
# description: Hyperion daemon
|
|
# processname: hyperiond
|
|
### BEGIN INIT INFO
|
|
# Provides: Hyperion
|
|
# Required-Start: $remote_fs $syslog
|
|
# Required-Stop: $remote_fs $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: Hyperion Ambilight init.d Service.
|
|
# Description: Hyperion Ambilight init.d Service.
|
|
### END INIT INFO
|
|
|
|
DAEMON=hyperiond
|
|
DAEMONOPTS="/opt/hyperion/hyperion.config.json /etc/hyperion/hyperion.config.json"
|
|
DAEMON_PATH="/usr/bin"
|
|
|
|
NAME=$DAEMON
|
|
DESC="Hyperion ambilight server"
|
|
PIDFILE=/var/run/$NAME.pid
|
|
SCRIPTNAME=/etc/init.d/$NAME
|
|
case "$1" in
|
|
start)
|
|
if [ $(pgrep -xl $NAME |wc -l) = 1 ]
|
|
then
|
|
printf "%-50s\n" "Already running..."
|
|
exit 1
|
|
else
|
|
printf "%-50s" "Starting $NAME..."
|
|
cd $DAEMON_PATH
|
|
PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
|
|
#echo "Saving PID" $PID " to " $PIDFILE
|
|
if [ -z $PID ]; then
|
|
printf "%s\n" "Fail"
|
|
else
|
|
echo $PID > $PIDFILE
|
|
printf "%s\n" "Ok"
|
|
fi
|
|
fi
|
|
;;
|
|
status)
|
|
printf "%-50s" "Checking $NAME..."
|
|
if [ -f $PIDFILE ]; then
|
|
PID=`cat $PIDFILE`
|
|
if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
|
|
printf "%s\n" "Process dead but pidfile exists"
|
|
else
|
|
echo "Running"
|
|
fi
|
|
else
|
|
printf "%s\n" "Service not running"
|
|
fi
|
|
;;
|
|
stop)
|
|
if [ -f $PIDFILE ]
|
|
then
|
|
printf "%-50s" "Stopping $NAME"
|
|
PID=`cat $PIDFILE`
|
|
cd $DAEMON_PATH
|
|
if [ -f $PIDFILE ]; then
|
|
kill $PID
|
|
printf "%s\n" "Ok"
|
|
rm -f $PIDFILE
|
|
else
|
|
printf "%s\n" "pidfile not found"
|
|
fi
|
|
else
|
|
printf "%-50s\n" "No PID file $NAME not running?"
|
|
fi
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {status|start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit 0
|