From 095e4f0e568da001ec8ea15e4f741b1cdfe97a1f Mon Sep 17 00:00:00 2001 From: Martin Lefebvre Date: Tue, 11 May 2010 15:01:35 +0200 Subject: network/skype: Initial import --- network/skype/doinst.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 network/skype/doinst.sh (limited to 'network/skype/doinst.sh') diff --git a/network/skype/doinst.sh b/network/skype/doinst.sh new file mode 100644 index 0000000000000..9c8ab7d00fe9e --- /dev/null +++ b/network/skype/doinst.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +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/dbus-1/system.d/skype.conf.new -- cgit v1.2.3