diff options
author | Chris Walker <kris240376@gmail.com> | 2018-09-21 22:26:38 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2018-09-21 22:26:38 +0100 |
commit | 995510e0b97e7b0d4fdac6e6e917cf8334006aeb (patch) | |
tree | 04eca882637346125b8c3f1a4f2853a2d9d11001 /office/SOGo/doinst.sh | |
parent | 0b5f135aa8437538afd759304b08009cefe9ad20 (diff) | |
download | slackbuilds-995510e0b97e7b0d4fdac6e6e917cf8334006aeb.tar.gz |
office/SOGo: Added (open source groupware).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/SOGo/doinst.sh')
-rw-r--r-- | office/SOGo/doinst.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/office/SOGo/doinst.sh b/office/SOGo/doinst.sh new file mode 100644 index 0000000000..723602cbbe --- /dev/null +++ b/office/SOGo/doinst.sh @@ -0,0 +1,31 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +config etc/cron.d/sogo.new +preserve_perms etc/cron.daily/sogo.new +config etc/httpd/extra/httpd-sogo.conf.new +config etc/logrotate.d/sogo.new +preserve_perms etc/rc.d/rc.sogo.new +config etc/sogo/sogo.conf.new +config etc/sysconfig/sogo.new |