class Nagios < Formula desc "Network monitoring and management system" homepage "https://www.nagios.org/" url "https://downloads.sourceforge.net/project/nagios/nagios-4.x/nagios-4.3.4/nagios-4.3.4.tar.gz" sha256 "c90b7812d9e343db12be19a572e15c415c5d6353a91c5e226e432c2d4aaa44f1" bottle do sha256 "d1d4071289fd037542a4f36f205ba522d3aae397e5379def5c402e6befb19f72" => :high_sierra sha256 "979dbfa690a58f825c7c06376e2c27ed0b680a1415a996a4666325a2dfaf9ed3" => :sierra sha256 "0f33981e12c49a84137d57bfd3c9163da1632ab9c1a9ab97f699d4a7f722811a" => :el_capitan sha256 "a521392cf589fab9d9dda30b4cb1e5a7c23baf22b898114a3d65b40a830b2a81" => :yosemite end depends_on "gd" depends_on "nagios-plugins" depends_on "libpng" def nagios_sbin prefix/"cgi-bin" end def nagios_etc etc/"nagios" end def nagios_var var/"lib/nagios" end def htdocs pkgshare/"htdocs" end def user Utils.popen_read("id -un").chomp end def group Utils.popen_read("id -gn").chomp end def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--sbindir=#{nagios_sbin}", "--sysconfdir=#{nagios_etc}", "--localstatedir=#{nagios_var}", "--datadir=#{htdocs}", "--libexecdir=#{HOMEBREW_PREFIX}/sbin", # Plugin dir "--with-cgiurl=/nagios/cgi-bin", "--with-htmurl=/nagios", "--with-nagios-user=#{user}", "--with-nagios-group='#{group}'", "--with-command-user=#{user}", "--with-command-group=_www", "--with-httpd-conf=#{share}", "--disable-libtool" system "make", "all" system "make", "install" # Install config system "make", "install-config" system "make", "install-webconf" end def post_install (var/"lib/nagios/rw").mkpath config = etc/"nagios/nagios.cfg" return unless File.exist?(config) return if File.read(config).include?(ENV["USER"]) inreplace config, "brew", ENV["USER"] end def caveats; <<~EOS First we need to create a command dir using superhuman powers: mkdir -p #{nagios_var}/rw sudo chgrp _www #{nagios_var}/rw sudo chmod 2775 #{nagios_var}/rw Then install the Nagios web frontend into Apple's build-in Apache: 1) Turn on Personal Web Sharing. 2) Load the cgi and php modules by patching /etc/apache2/httpd.conf: -#LoadModule php5_module libexec/apache2/libphp5.so +LoadModule php5_module libexec/apache2/libphp5.so -#LoadModule cgi_module libexec/apache2/mod_cgi.so +LoadModule cgi_module libexec/apache2/mod_cgi.so 3) Symlink the sample config and create your web account: sudo ln -sf #{share}/nagios.conf /etc/apache2/other/ htpasswd -cs #{nagios_etc}/htpasswd.users nagiosadmin sudo apachectl restart Log in with your web account (and don't forget to RTFM :-) open http://localhost/nagios EOS end plist_options :startup => true, :manual => "nagios #{HOMEBREW_PREFIX}/etc/nagios/nagios.cfg" def plist; <<~EOS KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/nagios #{nagios_etc}/nagios.cfg RunAtLoad StandardErrorPath /dev/null StandardOutPath /dev/null EOS end test do assert_match version.to_s, shell_output("#{bin}/nagios --version") end end