diff options
author | Matt Clay <matt@mystile.com> | 2025-01-08 02:15:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 02:15:27 +0100 |
commit | 1b3face0658aadc44be2059acace107598563b6f (patch) | |
tree | 6046095e217db796d97f116419b4efecf338ed91 /test | |
parent | ansible-test - Replace RHEL 9.4 with 9.5 (#84526) (diff) | |
download | ansible-1b3face0658aadc44be2059acace107598563b6f.tar.xz ansible-1b3face0658aadc44be2059acace107598563b6f.zip |
ansible-test - Replace FreeBSD 14.1 with 14.2 (#84527)
* ansible-test - Replace FreeBSD 14.1 with 14.2
* Remove cron faketime testing from FreeBSD
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/targets/setup_cron/vars/freebsd-14.yml | 4 | ||||
-rw-r--r-- | test/lib/ansible_test/_data/completion/remote.txt | 2 | ||||
-rw-r--r-- | test/lib/ansible_test/_util/target/setup/bootstrap.sh | 10 |
3 files changed, 5 insertions, 11 deletions
diff --git a/test/integration/targets/setup_cron/vars/freebsd-14.yml b/test/integration/targets/setup_cron/vars/freebsd-14.yml deleted file mode 100644 index 21d84a3c81..0000000000 --- a/test/integration/targets/setup_cron/vars/freebsd-14.yml +++ /dev/null @@ -1,4 +0,0 @@ -cron_pkg: -cron_service: cron -list_pkg_files: pkg info --list-files -faketime_pkg: libfaketime diff --git a/test/lib/ansible_test/_data/completion/remote.txt b/test/lib/ansible_test/_data/completion/remote.txt index 8fc1fedc9a..0c019e52c0 100644 --- a/test/lib/ansible_test/_data/completion/remote.txt +++ b/test/lib/ansible_test/_data/completion/remote.txt @@ -3,7 +3,7 @@ alpine become=doas_sudo provider=aws arch=x86_64 fedora/41 python=3.13 become=sudo provider=aws arch=x86_64 fedora become=sudo provider=aws arch=x86_64 freebsd/13.4 python=3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 -freebsd/14.1 python=3.9,3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 +freebsd/14.2 python=3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 freebsd python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 macos/14.3 python=3.11 python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64 macos python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64 diff --git a/test/lib/ansible_test/_util/target/setup/bootstrap.sh b/test/lib/ansible_test/_util/target/setup/bootstrap.sh index 22a9e5dcc0..fc2b970f0a 100644 --- a/test/lib/ansible_test/_util/target/setup/bootstrap.sh +++ b/test/lib/ansible_test/_util/target/setup/bootstrap.sh @@ -162,19 +162,17 @@ bootstrap_remote_freebsd() if [ "${controller}" ]; then jinja2_pkg="py${python_package_version}-jinja2" cryptography_pkg="py${python_package_version}-cryptography" - pyyaml_pkg="py${python_package_version}-yaml" + pyyaml_pkg="py${python_package_version}-pyyaml" packaging_pkg="py${python_package_version}-packaging" # Declare platform/python version combinations which do not have supporting OS packages available. # For these combinations ansible-test will use pip to install the requirements instead. case "${platform_version}/${python_version}" in 13.4/3.11) - # defaults available + pyyaml_pkg="py${python_package_version}-yaml" # older naming scheme ;; - 14.1/3.11) - cryptography_pkg="" # not available - jinja2_pkg="" # not available - pyyaml_pkg="" # not available + 14.2/3.11) + # defaults available ;; *) # just assume nothing is available |