mirror of https://github.com/ansible/ansible.git
[ansible-test] First attempt at freebsd/11.4 (#72655)
Change: - Try CI against freebsd 11.4 Test Plan: - ci_complete Tickets: - Fixes #48782 Signed-off-by: Rick Elrod <rick@elrod.me>pull/73330/head
parent
fe792fdcd2
commit
4357a78130
@ -0,0 +1,2 @@
|
||||
minor_changes:
|
||||
- ansible-test - Now supports freebsd/11.4 remote (https://github.com/ansible/ansible/issues/48782).
|
@ -0,0 +1,18 @@
|
||||
- hosts: localhost
|
||||
tasks:
|
||||
- name: Make sure git is uninstalled
|
||||
package:
|
||||
name: git
|
||||
state: absent
|
||||
register: git_remove
|
||||
|
||||
# This gets dragged in as a dependency of git on FreeBSD.
|
||||
# We need to remove it too when done.
|
||||
- name: remove python37 if necessary
|
||||
package:
|
||||
name: python37
|
||||
state: absent
|
||||
when:
|
||||
- git_remove is changed
|
||||
- ansible_distribution == 'FreeBSD'
|
||||
- ansible_python.version.major == 2
|
@ -0,0 +1,3 @@
|
||||
- name: Install Paramiko for Python 3 on FreeBSD 11.4
|
||||
pkgng:
|
||||
name: py37-paramiko
|
@ -0,0 +1,4 @@
|
||||
- name: Uninstall Paramiko for Python 3 on FreeBSD 11.4
|
||||
pkgng:
|
||||
name: py37-paramiko
|
||||
state: absent
|
Loading…
Reference in New Issue