diff options
Diffstat (limited to 'Monitoring/Makefile')
| -rw-r--r-- | Monitoring/Makefile | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/Monitoring/Makefile b/Monitoring/Makefile new file mode 100644 index 00000000..794f9262 --- /dev/null +++ b/Monitoring/Makefile @@ -0,0 +1,23 @@ +NAGDIR = /etc/nagios3/ +NAGLIBDIR = /usr/lib/nagios +HTDOCS = /usr/share/nagios3/htdocs + +.phony: debian +debian: +	git pull origin master +	[ `which python` ] || apt-get install python python-simplejson +	[ `which nagios3` ] || apt-get install nagios3 +	rm $(NAGDIR)/conf.d/* || true +	cp -r conf/* $(NAGDIR)/conf.d/ +	htpasswd -bc htpasswd.users nagiosadmin krebs +	htpasswd -b htpasswd.users shack shackit +	sed -i 's/\(authorized_for_all_hosts=nagiosadmin\)$$/\1,shack/' $(NAGDIR)/cgi.cfg +	sed -i 's/\(check_external_commands=\)0$$/\11/' $(NAGDIR)/nagios.cfg +	sed -i 's/\(authorized_for_all_services=nagiosadmin\)$$/\1,shack/' $(NAGDIR)/cgi.cfg +	cp -R htdocs/* $(HTDOCS) +	cp -r plugins $(NAGLIBDIR) +	/etc/init.d/nagios3 reload +	chown nagios:www-data /var/lib/nagios3 || true +	chown nagios:www-data /var/lib/nagios3/rw || true +	chmod g+x /var/lib/nagios3 || true +	chmod ugo=rwx /var/lib/nagios3/rw/nagios.cmd || true | 
