summaryrefslogtreecommitdiffstats
path: root/system/bacula/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'system/bacula/doinst.sh')
-rw-r--r--system/bacula/doinst.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/system/bacula/doinst.sh b/system/bacula/doinst.sh
new file mode 100644
index 0000000000..7e77f15f03
--- /dev/null
+++ b/system/bacula/doinst.sh
@@ -0,0 +1,27 @@
+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.bacula.new:
+if [ -e etc/rc.d/rc.bacula ]; then
+ cp -a etc/rc.d/rc.bacula etc/rc.d/rc.bacula.new.incoming
+ cat etc/rc.d/rc.bacula.new > etc/rc.d/rc.bacula.new.incoming
+ mv etc/rc.d/rc.bacula.new.incoming etc/rc.d/rc.bacula.new
+fi
+
+config etc/bacula/bacula-dir.conf.new
+config etc/bacula/bacula-fd.conf.new
+config etc/bacula/bacula-sd.conf.new
+config etc/bacula/bconsole.conf.new
+config etc/logrotate.d/bacula.new
+config etc/rc.d/rc.bacula.new
+