Combined after install scripts.

This commit is contained in:
David Newhall II 2019-06-07 13:54:26 -07:00
parent aa1a4710fc
commit dfd4000012
5 changed files with 28 additions and 27 deletions

4
.gitignore vendored
View File

@ -5,10 +5,10 @@
/unifi-poller*.deb
/unifi-poller*.rpm
/unifi-poller*.pkg
/unifi-poller.macos
/unifi-poller.linux
/vendor
.DS_Store
*~
/package_build_*
/release
/unifi-poller.macos
/unifi-poller.linux

View File

@ -82,7 +82,7 @@ $(BINARY)-$(VERSION).pkg: check_fpm package_build_osx
--name $(BINARY) \
--version $(VERSION) \
--iteration $(ITERATION) \
--after-install scripts/after-install-osx.sh \
--after-install scripts/after-install.sh \
--osxpkg-identifier-prefix com.github.davidnewhall \
--license MIT \
--url $(URL) \

View File

@ -1,6 +1,6 @@
# Grafana Dashboards & Examples
This folder contains 3 grafana dashboards to get you started with the new data pool.
This folder contains 4 grafana dashboards to get you started with the new data pool.
Import these into Grafana to quickly visualize data from your devices.
Created with Grafana 6.2.

View File

@ -1,19 +0,0 @@
#!/bin/bash
# This file is used by osxpkg packages. FPM use.
# 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 write logs.
chgrp -R admin /usr/local/etc/unifi-poller
chmod -R g+wr /usr/local/etc/unifi-poller
# Make sure admins can write logs.
chgrp admin /usr/local/var/log
chmod g=rwx /usr/local/var/log
# This starts it as root. no no no .... not sure how to fix that.
# launchctl load /Library/LaunchAgents/com.github.davidnewhall.unifi-poller.plist

View File

@ -1,7 +1,27 @@
#!/bin/bash
# This file is used by rpm and deb packages. FPM use.
# This file is used by deb, rpm and osx packages.
# FPM adds this as the after-install script.
systemctl daemon-reload
systemctl enable unifi-poller
systemctl restart unifi-poller
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 write logs.
chgrp -R admin /usr/local/etc/unifi-poller
chmod -R g+wr /usr/local/etc/unifi-poller
# Make sure admins can write logs.
chgrp admin /usr/local/var/log
chmod g=rwx /usr/local/var/log
# This starts it as root. no no no .... not sure how to fix that.
# launchctl load /Library/LaunchAgents/com.github.davidnewhall.unifi-poller.plist
elif [ -x "/bin/systemctl" ]; then
/bin/systemctl daemon-reload
/bin/systemctl enable unifi-poller
/bin/systemctl restart unifi-poller
fi