diff options
author | mario <mario@slackverse.org> | 2010-04-16 22:09:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-15 10:38:11 +0200 |
commit | bcbfbf9ed5e833fa59ece3367fe6361f667bbc06 (patch) | |
tree | d4e4654197699d1bfa453ae83ea325df093d39bf /system/bacula-client/doinst.sh | |
parent | cc132de15ed8de387655cb1078867a7ca9590496 (diff) |
system/bacula-client: Added (bacula client only)
Diffstat (limited to 'system/bacula-client/doinst.sh')
-rw-r--r-- | system/bacula-client/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/system/bacula-client/doinst.sh b/system/bacula-client/doinst.sh new file mode 100644 index 000000000000..0d18f79b8d36 --- /dev/null +++ b/system/bacula-client/doinst.sh @@ -0,0 +1,24 @@ +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-fd.conf.new +config etc/bacula/bconsole.conf.new +config etc/rc.d/rc.bacula.new + |