SlackBuildsOrg/system/podman/doinst.sh
Vincent Batts 901b4b2f8d
system/podman: update to 1.6.2
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-10-27 00:36:11 +07:00

18 lines
543 B
Bash

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/containers/libpod.conf.new
config etc/containers/registries.conf.new
config etc/containers/mounts.conf.new
config etc/containers/seccomp.json.new
config etc/containers/policy.json.new