diff options
author | David Somero <dsomero@hotmail.com> | 2010-05-11 20:02:11 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:02:11 +0200 |
commit | 4799691c4e1d7024bff7324646f8f604ce0e2516 (patch) | |
tree | 3fae2a572a7175a0cf581d1110c90f5021b318cd /system/webmin/doinst.sh | |
parent | 16868a57c4e2b4d9b5dac5064fabbb38e684ec28 (diff) | |
download | slackbuilds-4799691c4e1d7024bff7324646f8f604ce0e2516.tar.gz |
system/webmin: Added to 12.0 repository
Diffstat (limited to 'system/webmin/doinst.sh')
-rw-r--r-- | system/webmin/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
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 |