29 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
templdir=/usr/share/nagios-snmp-plugins/pluginconfig
 | 
						|
 | 
						|
if [ "$1" = "configure" ]; then
 | 
						|
	if [ -f /usr/share/monitoring-plugins/dpkg/functions ]; then
 | 
						|
		# only working with monitoring-plugins-basic
 | 
						|
		. /usr/share/monitoring-plugins/dpkg/functions
 | 
						|
		register_cfgs $2
 | 
						|
	elif [ -f /usr/share/nagios-plugins/dpkg/functions ]; then
 | 
						|
		# only working with nagios-plugins-basic (>= 1.4.5-2)
 | 
						|
		. /usr/share/nagios-plugins/dpkg/functions
 | 
						|
		register_cfgs $2
 | 
						|
	else
 | 
						|
		# to get working with etch
 | 
						|
		(
 | 
						|
			cd $templdir
 | 
						|
			for f in *cfg; do
 | 
						|
				ucf $f /etc/nagios-plugins/config/$f
 | 
						|
			done
 | 
						|
		);
 | 
						|
	fi
 | 
						|
fi
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 | 
						|
exit 0
 |