我为nagios自定义插件制作了一个bash脚本&组态 我使用等效的简单
这里是我的控制文件。
在Files:部分,我告诉文件将自己复制到正确的路径。
Files: check_cpu_loadx /usr/lib/nagios/plugins
check_ipmi_sensors /usr/lib/nagios/plugins
check_libreoffice_count /usr/lib/nagios/plugins
check_ram_per_user /usr/lib/nagios/plugins
check_ram_usage2 /usr/lib/nagios/plugins
check_ram_usage_percentage /usr/lib/nagios/plugins
check_tcptraffic /usr/lib/nagios/plugins
nrpe_custom.cfg /etc/nagios
File: postinst
#!/bin/bash -e
set -x
echo 'configuring nrpe.conf file.'
mv /etc/nagios/nrpe.cfg /etc/nagios/nrpe.original.backup
mv /etc/nagios/nrpe_custom.cfg /etc/nagios/nrpe.cfg
chmod -R +x /usr/lib/nagios/plugins
echo 'Installing tcp-ip addon..'
FLAG=0
Interfaces=`ifconfig -a | grep -o -e "[a-z][a-z]*[0-9]*[ ]*Link" | perl -pe "s|^([a-z]*[0-9]*)[ ]*Link|\1|"`
for Interface in $Interfaces; do
INET=`ifconfig $Interface | grep -o -e "inet addr:[^ ]*" | grep -o -e "[^:]*$"`
MASK=`ifconfig $Interface | grep -o -e "Mask:[^ ]*" | grep -o -e "[^:]*$"`
STATUS="up"
#loopback
if [ "$Interface" == "lo" ]; then
continue
fi
#if eth is down
if [ -z "$INET" ]; then
continue
fi
#if eth ip not starts with 10. or 192.
if [[ "$INET" == 10.* ]]
then
ActiveEth=$Interface;
break
elif [[ "$INET" == 192.* ]]
then
ActiveEth=$Interface;
break
else
echo "Ethernet Selection Failed!Configure nrpe.cfg manually.Change tcp_traffic plugin paramethers according to your current ethernet.";
FLAG=1
break
fi
done
if [[ "$FLAG" == 0 ]]
then
echo 'Selected Ethernet :'$ActiveEth
sed -i -e "s/eth0/$ActiveEth/g" /etc/nagios/nrpe.cfg
fi
echo 'nrpe.conf changed.'
echo 'Nagios-nrpe-server restarting.'
service nagios-nrpe-server restart
echo 'IPMI modules are loading.'
modprobe ipmi_devintf
modprobe ipmi_msghandler
echo "IPMI modules are added to startup."
#echo "ipmi_si" >> /etc/modules
echo "ipmi_devintf" >> /etc/modules
echo "ipmi_msghandler" >> /etc/modules
这里的问题,当我把它编译成deb包时,我得到“安装后的子进程安装脚本返回错误退出状态1”
然后我添加了set -x进行调试。问题是配置tcp-ip插件,有些机器有一个以上的以太网卡。所以我需要选择一个有一个以10开头的ip 。*或192。*
在第二部分,有一条线
的 INET = ifconfig $Interface | grep -o -e "inet addr:[^ ]*" | grep -o -e "[^:]*$"
当以太网设备没有ip时,grep返回null并且INET变量变为null,这就是进程退出状态为1的原因。
在那一行之后,当我输入“$?” ,它说1
所以这里的问题是,当我运行dpkg -i来安装该软件包时,bash脚本在看到INET变为null后退出..
任何帮助将不胜感激。我是这个bash的新手。
答案 0 :(得分:3)
如果你想确保bash命令总是成功,即使最后一个程序给出一个非空的返回值,只需添加一个“最后一个”命令即可成功。
类似
INET=$(/sbin/ifconfig eth0 | grep -o -e "inet addr:[^ ]*" | grep -o -e "[^:]*$" || true)
这里我们调用true
(一个总是成功的小程序),只要grep
失败(||
表示OR
,并且是一种根据退出程序链接程序的方法上一个的状态)
但是,您的脚本有许多缺陷:
LANG=de
)中运行时,您可以获得inet Adresse: 192.168.7.10
之类的字符串(原文如此!)/etc
中的文件。 /etc
是系统管理员根据需要调整系统的地方;您不应删除或还原sysadmin的配置。您应该记录如何正确配置系统(因此系统管理员可以自己完成);如果您通过自动配置系统坚持“帮助”,则应使用debconf /sbin/ifconfig
而非ifconfig