diff options
author | Mario Preksavec <mario@slackware.hr> | 2015-01-20 22:31:19 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-20 22:31:19 +0700 |
commit | 413c75244bd4afea4c286936b8ddb7f16edd3e31 (patch) | |
tree | 4b9263b72b8a43f4dc253dd41305097bd0f3562c /network/snmptt/doinst.sh | |
parent | 3ff7e8bdae8aa57327e241d39edd94c1642c3500 (diff) |
network/snmptt: Added (SNMP Trap Translator).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/snmptt/doinst.sh')
-rw-r--r-- | network/snmptt/doinst.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/network/snmptt/doinst.sh b/network/snmptt/doinst.sh new file mode 100644 index 000000000000..6c0ea55910d6 --- /dev/null +++ b/network/snmptt/doinst.sh @@ -0,0 +1,27 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.snmptt.new +config etc/snmp/snmptt.ini.new +config etc/logrotate.d/snmptt.new |