ansible-core 2.16.5rc1__py3-none-any.whl → 2.16.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansible-core might be problematic. Click here for more details.
- ansible/cli/config.py +5 -3
- ansible/cli/inventory.py +1 -21
- ansible/config/manager.py +12 -11
- ansible/constants.py +40 -0
- ansible/executor/play_iterator.py +1 -1
- ansible/executor/task_executor.py +8 -2
- ansible/galaxy/role.py +10 -12
- ansible/module_utils/ansible_release.py +1 -1
- ansible/module_utils/facts/virtual/linux.py +1 -1
- ansible/modules/blockinfile.py +1 -1
- ansible/modules/dnf.py +25 -143
- ansible/modules/dnf5.py +42 -21
- ansible/modules/find.py +7 -4
- ansible/modules/unarchive.py +1 -1
- ansible/modules/uri.py +8 -7
- ansible/modules/user.py +0 -6
- ansible/parsing/mod_args.py +8 -4
- ansible/playbook/role/__init__.py +1 -1
- ansible/plugins/action/__init__.py +1 -1
- ansible/plugins/action/fetch.py +4 -0
- ansible/plugins/cache/__init__.py +1 -0
- ansible/plugins/connection/psrp.py +1 -1
- ansible/plugins/connection/winrm.py +14 -2
- ansible/plugins/lookup/url.py +9 -1
- ansible/plugins/strategy/free.py +1 -1
- ansible/plugins/strategy/linear.py +1 -1
- ansible/release.py +1 -1
- ansible/template/__init__.py +10 -10
- ansible/vars/hostvars.py +6 -22
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/METADATA +1 -1
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/RECORD +40 -40
- ansible_test/_data/requirements/constraints.txt +1 -0
- ansible_test/_internal/commands/sanity/ansible_doc.py +1 -1
- ansible_test/_internal/pypi_proxy.py +8 -1
- ansible_test/_util/target/setup/bootstrap.sh +9 -0
- {ansible_core-2.16.5rc1.data → ansible_core-2.16.7.data}/scripts/ansible-test +0 -0
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/COPYING +0 -0
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/WHEEL +0 -0
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/top_level.txt +0 -0
|
@@ -111,6 +111,15 @@ bootstrap_remote_alpine()
|
|
|
111
111
|
echo "Failed to install packages. Sleeping before trying again..."
|
|
112
112
|
sleep 10
|
|
113
113
|
done
|
|
114
|
+
|
|
115
|
+
# Upgrade the `libexpat` package to ensure that an upgraded Python (`pyexpat`) continues to work.
|
|
116
|
+
while true; do
|
|
117
|
+
# shellcheck disable=SC2086
|
|
118
|
+
apk upgrade -q libexpat \
|
|
119
|
+
&& break
|
|
120
|
+
echo "Failed to upgrade libexpat. Sleeping before trying again..."
|
|
121
|
+
sleep 10
|
|
122
|
+
done
|
|
114
123
|
}
|
|
115
124
|
|
|
116
125
|
bootstrap_remote_fedora()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|