Update after-install.sh

This commit is contained in:
David Newhall II 2019-06-23 02:09:46 -07:00 committed by GitHub
parent 3cf754b38d
commit bc446ad764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 21 deletions

View File

@ -1,28 +1,9 @@
#!/bin/bash
# This file is used by deb, rpm and osx packages.
# This file is used by deb and rpm packages.
# FPM adds this as the after-install script.
if [ "$(uname -s)" = "Darwin" ]; then
# Copy the config file into place if it does not exist.
if [ ! -f /usr/local/etc/unifi-poller/up.conf ] && [ -f /usr/local/etc/unifi-poller/up.conf.example ]; then
cp /usr/local/etc/unifi-poller/up.conf.example /usr/local/etc/unifi-poller/up.conf
fi
# Allow admins to change the configuration and delete the docs.
chgrp -R admin /usr/local/etc/unifi-poller /usr/local/share/doc/unifi-poller
chmod -R g+wr /usr/local/etc/unifi-poller /usr/local/share/doc/unifi-poller
# Make sure admins can delete logs.
chown -R nobody:admin /usr/local/var/log/unifi-poller
chmod 0775 /usr/local/var/log/unifi-poller
chmod -R g+rw /usr/local/var/log/unifi-poller
# Restart the service - this starts the application as user nobody.
launchctl unload /Library/LaunchAgents/com.github.davidnewhall.unifi-poller.plist
launchctl load /Library/LaunchAgents/com.github.davidnewhall.unifi-poller.plist
elif [ -x "/bin/systemctl" ]; then
if [ -x "/bin/systemctl" ]; then
# Reload and restart - this starts the application as user nobody.
/bin/systemctl daemon-reload
/bin/systemctl enable unifi-poller