diff options
author | dhabyx <slack.dhabyx@gmail.com> | 2010-05-13 00:59:46 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:59:46 +0200 |
commit | df182bd41e121545b11d72caed5bb0eb1b33a5ea (patch) | |
tree | fc5998df1c0c3d5ff738ae3e4d8413e8ffdd7311 /multimedia/mozplugger/doinst.sh | |
parent | fc4efde33f8bb59024143e2743ebb817619be39f (diff) | |
download | slackbuilds-df182bd41e121545b11d72caed5bb0eb1b33a5ea.tar.gz |
multimedia/mozplugger: Added to 13.0 repository
Diffstat (limited to 'multimedia/mozplugger/doinst.sh')
-rw-r--r-- | multimedia/mozplugger/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/multimedia/mozplugger/doinst.sh b/multimedia/mozplugger/doinst.sh new file mode 100644 index 0000000000..6122924a10 --- /dev/null +++ b/multimedia/mozplugger/doinst.sh @@ -0,0 +1,14 @@ +# Handle configuration files +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... +} +# List of configuration files (they should end in .new) +config etc/mozpluggerrc.new |