tripleo-image-elements/elements/snmpd/install.d/67-snmpd
Ana Krivokapic 5312f4e156 Account for amd64 architecture in snmpd element
Change-Id: I7abb1f0cb5e77c735ce3af4f4d17aff6dbc96619
Related-Bug: #1272234
2014-02-05 18:56:24 +01:00

12 lines
457 B
Bash
Executable File

#!/bin/bash
set -eux
install-packages snmpd snmp-mibs-downloader lm-sensors nagios-plugins-basic
# install our snmp check script
DEST_DIR="/usr/lib64/nagios/plugins"
if [ ! 'amd64' = "$ARCH" ] || [ ! -d $DEST_DIR ]; then
DEST_DIR="/usr/lib/nagios/plugins"
fi
install -m 0755 -o root -g root $(dirname $0)/../files/check_proc_open_files.py $DEST_DIR/check_proc_open_files.py
install -m 0440 -o root -g root $(dirname $0)/../files/snmp /etc/sudoers.d/snmp