diff options
author | Sebastien Ballet <phenixi@aliceadsl.fr> | 2010-05-12 17:44:37 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:44:37 +0200 |
commit | a03e58c043121f18f716b834714625d3c9a5e1cb (patch) | |
tree | 2be223f7d87eb66d27339c0d7a4a1eb4e90daa8f /office/cups-pdf/doinst.sh | |
parent | ced6313e1e0fe2302f3e8d342f0c5c8e225bf39f (diff) | |
download | slackbuilds-a03e58c043121f18f716b834714625d3c9a5e1cb.tar.gz |
office/cups-pdf: Updated for version 2.5.0
Diffstat (limited to 'office/cups-pdf/doinst.sh')
-rw-r--r-- | office/cups-pdf/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/office/cups-pdf/doinst.sh b/office/cups-pdf/doinst.sh new file mode 100644 index 0000000000..9ac072f3a6 --- /dev/null +++ b/office/cups-pdf/doinst.sh @@ -0,0 +1,14 @@ +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/cups/cups-pdf.conf.new + |