diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-01 22:00:27 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-05 06:19:06 +0700 |
commit | b2ede928549d5c102d4c746097e140775dc96487 (patch) | |
tree | ca69414e273bf982401db3464ffbba990e6549dd /system/usermin/doinst.sh | |
parent | c483dcab0cbf1d878e2a886cd1bc71e5aa6b3a3d (diff) | |
download | slackbuilds-b2ede928549d5c102d4c746097e140775dc96487.tar.gz |
system/usermin: Added (web-based interface for system administration)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/usermin/doinst.sh')
-rw-r--r-- | system/usermin/doinst.sh | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/system/usermin/doinst.sh b/system/usermin/doinst.sh new file mode 100644 index 0000000000..1b6001013d --- /dev/null +++ b/system/usermin/doinst.sh @@ -0,0 +1,48 @@ +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/usermin/miniserv.conf.new +config etc/usermin/miniserv.users.new +config etc/usermin/config.new +config etc/usermin/at/config.new +config etc/usermin/changepass/config.new +config etc/usermin/chfn/config.new +config etc/usermin/commands/config.new +config etc/usermin/cron/config.new +config etc/usermin/cshrc/config.new +config etc/usermin/fetchmail/config.new +config etc/usermin/file/config.new +config etc/usermin/filter/config.new +config etc/usermin/forward/config.new +config etc/usermin/gnupg/config.new +config etc/usermin/htaccess/config.new +config etc/usermin/htaccess-htpasswd/config.new +config etc/usermin/language/config.new +config etc/usermin/mailbox/config.new +config etc/usermin/mailcap/config.new +config etc/usermin/man/config.new +config etc/usermin/mysql/config.new +config etc/usermin/plan/config.new +config etc/usermin/postgresql/config.new +config etc/usermin/proc/config.new +config etc/usermin/procmail/config.new +config etc/usermin/quota/config.new +config etc/usermin/schedule/config.new +config etc/usermin/shell/config.new +config etc/usermin/spam/config.new +config etc/usermin/ssh/config.new +config etc/usermin/theme/config.new +config etc/usermin/telnet/config.new +config etc/usermin/tunnel/config.new +config etc/usermin/updown/config.new +config etc/usermin/usermount/config.new |