This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Monit on pfSense 2.4 ARM (SG-1000) | |
# Install the package from the FreeBSD repository | |
pkg add http://pkg.freebsd.org/FreeBSD:11:armv6/latest/All/monit-5.18.txz | |
# Rename the rc.d script to .sh and fix permissions so pfSense will start it automatically | |
mv /usr/local/etc/rc.d/monit /usr/local/etc/rc.d/monit.sh | |
chmod 0755 /usr/local/etc/rc.d/monit.sh | |
# Add monit_enable=YES to a local rc.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# homebridge | |
description "homebridge server" | |
# start after init completes (meaning avahi etc are running) | |
start on stopped rc | |
stop on shutdown | |
# keep it running when it inevitably bails | |
respawn |