diff options
author | Christopher Walker <kris240376@gmail.com> | 2011-08-22 08:23:47 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-08-22 08:23:47 -0300 |
commit | 444996d10d6be685428e1cc744d87c9d0868d990 (patch) | |
tree | 7b14df9df12f80e943df939f1bdc4f21461cce34 /network/openvswitch/doinst.sh | |
parent | 27f6419c387b460c83791b38d4374a5cecce5a8d (diff) | |
download | slackbuilds-444996d10d6be685428e1cc744d87c9d0868d990.tar.gz |
network/openvswitch: Added (multilayer virtual switch)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/openvswitch/doinst.sh')
-rw-r--r-- | network/openvswitch/doinst.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/network/openvswitch/doinst.sh b/network/openvswitch/doinst.sh new file mode 100644 index 0000000000..9a89f95fb8 --- /dev/null +++ b/network/openvswitch/doinst.sh @@ -0,0 +1,29 @@ +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.openvswitch.new + +if [ -x /sbin/depmod ]; then + chroot . /sbin/depmod -a >/dev/null 2>&1 +fi |