mirror of https://github.com/sfeakes/AqualinkD.git
113 lines
2.8 KiB
Bash
Executable File
113 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# ROOT=/nas/data/Development/Raspberry/gpiocrtl/test-install
|
|
#
|
|
|
|
|
|
BUILD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
SERVICE="aqualinkd"
|
|
|
|
BIN="aqualinkd"
|
|
CFG="aqualinkd.conf"
|
|
SRV="aqualinkd.service"
|
|
DEF="aqualinkd"
|
|
MDNS="aqualinkd.service"
|
|
|
|
BINLocation="/usr/local/bin"
|
|
CFGLocation="/etc"
|
|
SRVLocation="/etc/systemd/system"
|
|
DEFLocation="/etc/default"
|
|
WEBLocation="/var/www/aqualinkd/"
|
|
MDNSLocation="/etc/avahi/services/"
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "This script must be run as root"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $(mount | grep " / " | grep "(ro,") ]]; then
|
|
echo "Root filesystem is readonly, can't install"
|
|
exit 1
|
|
fi
|
|
|
|
# Exit if we can't find systemctl
|
|
command -v systemctl >/dev/null 2>&1 || { echo "This script needs systemd's systemctl manager, Please check path or install manually" >&2; exit 1; }
|
|
|
|
# stop service, hide any error, as the service may not be installed yet
|
|
systemctl stop $SERVICE > /dev/null 2>&1
|
|
SERVICE_EXISTS=$(echo $?)
|
|
|
|
# Clean everything if requested.
|
|
if [ "$1" == "clean" ]; then
|
|
echo "Deleting install"
|
|
systemctl disable $SERVICE > /dev/null 2>&1
|
|
if [ -f $BINLocation/$BIN ]; then
|
|
rm -f $BINLocation/$BIN
|
|
fi
|
|
if [ -f $SRVLocation/$SRV ]; then
|
|
rm -f $SRVLocation/$SRV
|
|
fi
|
|
if [ -f $CFGLocation/$CFG ]; then
|
|
rm -f $CFGLocation/$CFG
|
|
fi
|
|
if [ -f $DEFLocation/$DEF ]; then
|
|
rm -f $DEFLocation/$DEF
|
|
fi
|
|
if [ -d $WEBLocation ]; then
|
|
rm -rf $WEBLocation
|
|
fi
|
|
systemctl daemon-reload
|
|
exit
|
|
fi
|
|
|
|
# copy files to locations, but only copy cfg if it doesn;t already exist
|
|
|
|
cp $BUILD/$BIN $BINLocation/$BIN
|
|
cp $BUILD/$SRV $SRVLocation/$SRV
|
|
|
|
if [ -f $CFGLocation/$CFG ]; then
|
|
echo "AqualinkD config exists, did not copy new config, you may need to edit existing! $CFGLocation/$CFG"
|
|
else
|
|
cp $BUILD/$CFG $CFGLocation/$CFG
|
|
fi
|
|
|
|
if [ -f $DEFLocation/$DEF ]; then
|
|
echo "AqualinkD defaults exists, did not copy new defaults to $DEFLocation/$DEF"
|
|
else
|
|
cp $BUILD/$DEF.defaults $DEFLocation/$DEF
|
|
fi
|
|
|
|
if [ -f $MDNSLocation/$MDNS ]; then
|
|
echo "Avahi/mDNS defaults exists, did not copy new defaults to $MDNSLocation/$MDNS"
|
|
else
|
|
if [ -d "$MDNSLocation" ]; then
|
|
cp $BUILD/$MDNS.avahi $MDNSLocation/$MDNS
|
|
else
|
|
echo "Avahi/mDNS may not be installed, not copying $MDNSLocation/$MDNS"
|
|
fi
|
|
fi
|
|
|
|
if [ ! -d "$WEBLocation" ]; then
|
|
mkdir -p $WEBLocation
|
|
fi
|
|
|
|
if [ -f "$WEBLocation/config.js" ]; then
|
|
echo "AqualinkD web config exists, did not copy new config, you may need to edit existing $WEBLocation/config.js "
|
|
rsync -avq --exclude='config.js' $BUILD/../web/* $WEBLocation
|
|
else
|
|
cp -r $BUILD/../web/* $WEBLocation
|
|
fi
|
|
|
|
|
|
systemctl enable $SERVICE
|
|
systemctl daemon-reload
|
|
|
|
if [ $SERVICE_EXISTS -eq 0 ]; then
|
|
echo "Starting daemon $SERVICE"
|
|
systemctl start $SERVICE
|
|
else
|
|
echo "Please edit $CFGLocation/$CFG, then start AqualinkD service"
|
|
fi
|
|
|