From a03e58c043121f18f716b834714625d3c9a5e1cb Mon Sep 17 00:00:00 2001 From: Sebastien Ballet Date: Wed, 12 May 2010 17:44:37 +0200 Subject: office/cups-pdf: Updated for version 2.5.0 --- office/cups-pdf/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 office/cups-pdf/doinst.sh (limited to 'office/cups-pdf/doinst.sh') 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 + -- cgit v1.2.3