summaryrefslogtreecommitdiffstats
path: root/system/vcp/doinst.sh
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2012-05-13 09:10:42 -0400
committer dsomero <xgizzmo@slackbuilds.org>2012-05-13 09:10:42 -0400
commite9a608ba79e0aa1d892241cbcf6fbbccdbbcb4f2 (patch)
treebd319b9527b88f7b35ac19f9323af502b2e8eba5 /system/vcp/doinst.sh
parentade5ee96ae8ee923a461d347864e35e1bf4f2cbe (diff)
downloadslackbuilds-e9a608ba79e0aa1d892241cbcf6fbbccdbbcb4f2.tar.gz
slackbuilds-e9a608ba79e0aa1d892241cbcf6fbbccdbbcb4f2.tar.xz
system/vcp: Added (copy files via a curses interface)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/vcp/doinst.sh')
-rw-r--r--system/vcp/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/vcp/doinst.sh b/system/vcp/doinst.sh
new file mode 100644
index 0000000000..1e96fb0d36
--- /dev/null
+++ b/system/vcp/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/vcp.conf.new