post包执行bash脚本时deb包失败

时间:2013-02-04 12:10:17

标签: bash debian dpkg

我为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
在postinst部分,它是一个用于安装后的bash脚本

 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的新手。

1 个答案:

答案 0 :(得分:3)

如果你想确保bash命令总是成功,即使最后一个程序给出一个非空的返回值,只需添加一个“最后一个”命令即可成功。

类似

INET=$(/sbin/ifconfig eth0 | grep -o -e "inet addr:[^ ]*" | grep -o -e "[^:]*$" || true)

这里我们调用true(一个总是成功的小程序),只要grep失败(||表示OR,并且是一种根据退出程序链接程序的方法上一个的状态)

但是,您的脚本有许多缺陷:

  • 你的grep表达式“inet addr:”只能在英语语言环境中给出正确的结果;例如在德国环境(LANG=de)中运行时,您可以获得inet Adresse: 192.168.7.10之类的字符串(原文如此!)
  • 你无条件地移动文件;如果这些文件不在那里会发生什么?
  • 您无条件地移动/etc中的文件。 /etc是系统管理员根据需要调整系统的地方;您不应删除或还原sysadmin的配置。您应该记录如何正确配置系统(因此系统管理员可以自己完成);如果您通过自动配置系统坚持“帮助”,则应使用debconf
  • 之类的内容
  • 你认为安装了很多软件,而且这个软件就在你的道路上。你应该使用你正在使用的二进制文件的完全限定路径,例如/sbin/ifconfig而非ifconfig