diff options
author | meckafett <tom.bradish@gmail.com> | 2010-05-11 22:54:45 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 22:54:45 +0200 |
commit | e8937fb0691fb613b249b397e12311ea14dd8aff (patch) | |
tree | 2b50813cd57674d71a93d672af8ea850bf3ade2b /network/ettercap-NG/doinst.sh | |
parent | 0229d96159745b3aa42f479da9364749ebb88736 (diff) | |
download | slackbuilds-e8937fb0691fb613b249b397e12311ea14dd8aff.tar.gz |
network/ettercap-NG: Added to 12.1 repository
Diffstat (limited to 'network/ettercap-NG/doinst.sh')
-rw-r--r-- | network/ettercap-NG/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
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 + |