summaryrefslogtreecommitdiffstats
path: root/system/ansible/doinst.sh
diff options
context:
space:
mode:
author Marek Wodzinski <majek@w7i.pl>2024-02-17 02:17:21 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2024-02-17 08:34:38 +0700
commitf6663c209cd5a06781136c784b854a673fe9b03c (patch)
treef4f36ce8039c4a1c6ace5ba6cf32774ca0b2d2de /system/ansible/doinst.sh
parent9128a8e66310142cdfc67c422e870df46d389a05 (diff)
downloadslackbuilds-f6663c209cd5a06781136c784b854a673fe9b03c.tar.gz
slackbuilds-f6663c209cd5a06781136c784b854a673fe9b03c.tar.xz
system/ansible: Updated for version 8.7.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--system/ansible/doinst.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/system/ansible/doinst.sh b/system/ansible/doinst.sh
deleted file mode 100644
index 52f13dc698..0000000000
--- a/system/ansible/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-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/ansible/ansible.cfg.new
-config etc/ansible/hosts.new