diff options
author | Nicolas Piatto <nico@lodpp.net> | 2018-04-11 23:50:04 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-04-14 07:06:29 +0700 |
commit | 59453745f7d18b3cc774a670ed7c82ba9d278f8c (patch) | |
tree | eb4fb875b8bd5466e3ad9a709a19fe428c499554 /network/host-sflow/doinst.sh | |
parent | e484bcf1323ff3522eb386a4e40ba9209a116bbf (diff) |
network/host-sflow: Added (sFlow protocol metrics).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/host-sflow/doinst.sh')
-rw-r--r-- | network/host-sflow/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/network/host-sflow/doinst.sh b/network/host-sflow/doinst.sh new file mode 100644 index 0000000000000..00c3dd9dfa761 --- /dev/null +++ b/network/host-sflow/doinst.sh @@ -0,0 +1,26 @@ +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/init.d/hsflowd +config etc/hsflowd.conf.new |