From 4799691c4e1d7024bff7324646f8f604ce0e2516 Mon Sep 17 00:00:00 2001 From: David Somero Date: Tue, 11 May 2010 20:02:11 +0200 Subject: system/webmin: Added to 12.0 repository --- system/webmin/doinst.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 system/webmin/doinst.sh (limited to 'system/webmin/doinst.sh') diff --git a/system/webmin/doinst.sh b/system/webmin/doinst.sh new file mode 100644 index 0000000000..765079d88b --- /dev/null +++ b/system/webmin/doinst.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +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... +} + +# Keep same perms on rc.webmin.new: +if [ -e etc/rc.d/rc.webmin ]; then + cp -a etc/rc.d/rc.webmin etc/rc.d/rc.webmin.new.incoming + cat etc/rc.d/rc.webmin.new > etc/rc.d/rc.webmin.new.incoming + mv etc/rc.d/rc.webmin.new.incoming etc/rc.d/rc.webmin.new +fi + +# Signal the startup script to do some post install configuration +touch etc/webmin/FIRSTRUN -- cgit v1.2.3