8067e38aa6207b68751bf252767c6f593457292a
Benjamin Renard Added installation script

Benjamin Renard authored 13 years ago

1) #!/bin/bash
2) 
3) SD=$( dirname $0 )
4) SD=$( pwd $SD )
5) SRC=$SD/check_mem
6) DD=/usr/local/lib/nagios/plugins
7) DST=$DD/check_mem
8) 
9) NAGIOS_PLUGINS_CFG_DIR=/etc/nagios-plugins/config
10) NAGIOS_PLUGINS_CFG_DST=$NAGIOS_PLUGINS_CFG_DIR/mem.cfg
11) 
12) [ ! -d $DD ] && mkdir -p $DD
13) 
14) DO=1
15) if [ -e $DST ]
16) then
17) 	ASK=1
18) 	if [ -L $DST ]
19) 	then
root Fixed symbolic link existen...

root authored 13 years ago

20) 		D=`ls -l $DST|sed 's/.* -> //'`