slackbuilds_ponce/system/podman/doinst.sh
Willy Sudiarto Raharjo 360ef78270 system/podman: Updated for version 4.7.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-11-21 10:20:54 +07:00

16 lines
466 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/registries.conf.new
config etc/containers/mounts.conf.new
config etc/containers/policy.json.new