Lora-Map/Lora-Map/dpkg/postinst
2019-12-10 15:17:58 +01:00

17 lines
357 B
Bash

#!/bin/bash
DEBNAME="loramap"
systemctl enable $DEBNAME
systemctl daemon-reload
touch /var/log/loramap.log
chown loramapbot:loramapbot /var/log/loramap.log
chmod 644 /var/log/loramap.log
chown -R loramapbot:loramapbot /usr/local/bin/$DEBNAME
if [ -f /tmp/$DEBNAME_service_runner ]; then
service $DEBNAME start
rm /tmp/$DEBNAME_service_runner
fi