From e8937fb0691fb613b249b397e12311ea14dd8aff Mon Sep 17 00:00:00 2001 From: meckafett Date: Tue, 11 May 2010 22:54:45 +0200 Subject: network/ettercap-NG: Added to 12.1 repository --- network/ettercap-NG/doinst.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 network/ettercap-NG/doinst.sh (limited to 'network/ettercap-NG/doinst.sh') diff --git a/network/ettercap-NG/doinst.sh b/network/ettercap-NG/doinst.sh new file mode 100644 index 0000000000..837a7c8f69 --- /dev/null +++ b/network/ettercap-NG/doinst.sh @@ -0,0 +1,19 @@ +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... +} + +config etc/etter.conf.new + +if [ -x usr/bin/update-desktop-database ]; then + usr/bin/update-desktop-database -q usr/share/applications +fi + -- cgit v1.2.3