diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2017-03-12 00:18:06 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-18 06:58:13 +0700 |
commit | 287346028fe6fff374c4be88e1156ea0e079e7fe (patch) | |
tree | 9858c83480ca2e6accbcc006210751671e799dba /network/lldpd/doinst.sh | |
parent | fe183a3c4da659e7b148b737d17d1f00d16faadd (diff) | |
download | slackbuilds-287346028fe6fff374c4be88e1156ea0e079e7fe.tar.gz |
network/lldpd: Added (an implementation of IEEE 802.1ab (LLDP)).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/lldpd/doinst.sh')
-rw-r--r-- | network/lldpd/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/network/lldpd/doinst.sh b/network/lldpd/doinst.sh new file mode 100644 index 0000000000..6e2e97c921 --- /dev/null +++ b/network/lldpd/doinst.sh @@ -0,0 +1,22 @@ +config() { + 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.lldpd.new |