diff options
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 |
commit | e9a608ba79e0aa1d892241cbcf6fbbccdbbcb4f2 (patch) | |
tree | bd319b9527b88f7b35ac19f9323af502b2e8eba5 /system/vcp/doinst.sh | |
parent | ade5ee96ae8ee923a461d347864e35e1bf4f2cbe (diff) |
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.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/vcp/doinst.sh b/system/vcp/doinst.sh new file mode 100644 index 000000000000..1e96fb0d36c2 --- /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 |