diff options
author | Marco Cecchetti <mrc.ildp@gmail.com> | 2010-05-12 23:33:21 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:33:21 +0200 |
commit | 04b831eeaeac8a803e1a90ec84201255964b86ef (patch) | |
tree | 6ce4c293cc8e02071389a8b1528553794f0bd7b3 /system/bootchart/doinst.sh | |
parent | 6f4c95667119ea9c55937d38b139974966360b0c (diff) | |
download | slackbuilds-04b831eeaeac8a803e1a90ec84201255964b86ef.tar.gz |
system/bootchart: Added to 12.2 repository
Diffstat (limited to 'system/bootchart/doinst.sh')
-rw-r--r-- | system/bootchart/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/bootchart/doinst.sh b/system/bootchart/doinst.sh new file mode 100644 index 0000000000..35b6b02218 --- /dev/null +++ b/system/bootchart/doinst.sh @@ -0,0 +1,15 @@ +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/bootchartd.conf.new + |