mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Add ArchLinux, Debian Bullseye and CentOS Stream 8 to CI.
* Add Alpine to CI matrix as well.
(cherry picked from commit a06903f33a
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
f60c90873f
commit
c0008e976f
56 changed files with 861 additions and 700 deletions
|
@ -310,6 +310,8 @@ stages:
|
|||
test: ubuntu1804
|
||||
- name: Ubuntu 20.04
|
||||
test: ubuntu2004
|
||||
- name: Alpine 3
|
||||
test: alpine3
|
||||
groups:
|
||||
- 1
|
||||
- 2
|
||||
|
@ -348,6 +350,8 @@ stages:
|
|||
test: fedora33
|
||||
- name: openSUSE 15 py2
|
||||
test: opensuse15py2
|
||||
- name: Alpine 3
|
||||
test: alpine3
|
||||
groups:
|
||||
- 2
|
||||
- 3
|
||||
|
@ -382,6 +386,26 @@ stages:
|
|||
- 2
|
||||
- 3
|
||||
|
||||
### Community Docker
|
||||
- stage: Docker_community_devel
|
||||
displayName: Docker (community images) devel
|
||||
dependsOn: []
|
||||
jobs:
|
||||
- template: templates/matrix.yml
|
||||
parameters:
|
||||
testFormat: devel/linux-community/{0}
|
||||
targets:
|
||||
- name: Debian Bullseye
|
||||
test: debian-bullseye/3.9
|
||||
- name: ArchLinux
|
||||
test: archlinux/3.10
|
||||
- name: CentOS Stream 8
|
||||
test: centos-stream8/3.8
|
||||
groups:
|
||||
- 1
|
||||
- 2
|
||||
- 3
|
||||
|
||||
### Cloud
|
||||
- stage: Cloud_devel
|
||||
displayName: Cloud devel
|
||||
|
@ -457,6 +481,7 @@ stages:
|
|||
- Docker_2_10
|
||||
- Docker_2_11
|
||||
- Docker_2_12
|
||||
- Docker_community_devel
|
||||
- Cloud_devel
|
||||
- Cloud_2_9
|
||||
- Cloud_2_10
|
||||
|
|
|
@ -68,4 +68,13 @@
|
|||
# in chkconfig-1.7-2 fails when /etc/alternatives/dummy link is missing,
|
||||
# error is: 'failed to read link /usr/bin/dummy: No such file or directory'.
|
||||
# Moreover Fedora 24 is no longer maintained.
|
||||
when: ansible_distribution != 'Fedora' or ansible_distribution_major_version|int > 24
|
||||
#
|
||||
# *Disable tests on Arch Linux*
|
||||
# TODO: figure out whether there is an alternatives tool for Arch Linux
|
||||
#
|
||||
# *Disable tests on Alpine*
|
||||
# TODO: figure out whether there is an alternatives tool for Alpine
|
||||
when:
|
||||
- ansible_distribution != 'Fedora' or ansible_distribution_major_version|int > 24
|
||||
- ansible_distribution != 'Archlinux'
|
||||
- ansible_distribution != 'Alpine'
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
when:
|
||||
- not (ansible_distribution == "Ubuntu" and ansible_distribution_major_version|int == 14)
|
||||
- not (ansible_os_family == "Suse" and ansible_distribution_major_version|int != 42 and ansible_python.version.major != 3)
|
||||
- not (ansible_distribution == 'Archlinux') # TODO: package seems to be broken, cannot be downloaded from mirrors?
|
||||
- not (ansible_distribution == 'Alpine') # TODO: not sure what's wrong here, the module doesn't return what the tests expect
|
||||
block:
|
||||
- name: setup install cloud-init
|
||||
package:
|
||||
|
|
|
@ -82,9 +82,7 @@
|
|||
that:
|
||||
- result is failed
|
||||
|
||||
- when: pyopenssl_version.stdout is version('0.15', '>=')
|
||||
block:
|
||||
- name: ensure SSL certificate is checked
|
||||
- name: ensure SSL certificate is checked
|
||||
consul_session:
|
||||
state: info
|
||||
id: '{{ session_id }}'
|
||||
|
@ -93,13 +91,13 @@
|
|||
register: result
|
||||
ignore_errors: True
|
||||
|
||||
- name: previous task should fail since certificate is not known
|
||||
- name: previous task should fail since certificate is not known
|
||||
assert:
|
||||
that:
|
||||
- result is failed
|
||||
- "'certificate verify failed' in result.msg"
|
||||
|
||||
- name: ensure SSL certificate isn't checked when validate_certs is disabled
|
||||
- name: ensure SSL certificate isn't checked when validate_certs is disabled
|
||||
consul_session:
|
||||
state: info
|
||||
id: '{{ session_id }}'
|
||||
|
@ -108,12 +106,12 @@
|
|||
validate_certs: False
|
||||
register: result
|
||||
|
||||
- name: previous task should succeed since certificate isn't checked
|
||||
- name: previous task should succeed since certificate isn't checked
|
||||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
|
||||
- name: ensure a secure connection is possible
|
||||
- name: ensure a secure connection is possible
|
||||
consul_session:
|
||||
state: info
|
||||
id: '{{ session_id }}'
|
||||
|
@ -123,7 +121,7 @@
|
|||
REQUESTS_CA_BUNDLE: '{{ remote_dir }}/cert.pem'
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- result is changed
|
||||
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
consul_uri: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/consul/consul_{{ consul_version }}_{{ ansible_system | lower }}_{{ consul_arch }}.zip
|
||||
consul_cmd: '{{ remote_tmp_dir }}/consul'
|
||||
block:
|
||||
- name: register pyOpenSSL version
|
||||
command: '{{ ansible_python_interpreter }} -c ''import OpenSSL; print(OpenSSL.__version__)'''
|
||||
register: pyopenssl_version
|
||||
- name: Install requests<2.20 (CentOS/RHEL 6)
|
||||
pip:
|
||||
name: requests<2.20
|
||||
|
@ -23,8 +20,6 @@
|
|||
name: python-consul
|
||||
register: result
|
||||
until: result is success
|
||||
- when: pyopenssl_version.stdout is version('0.15', '>=')
|
||||
block:
|
||||
- name: Generate privatekey
|
||||
community.crypto.openssl_privatekey:
|
||||
path: '{{ remote_tmp_dir }}/privatekey.pem'
|
||||
|
|
|
@ -3,11 +3,7 @@ server = true
|
|||
pid_file = "{{ remote_dir }}/consul.pid"
|
||||
ports {
|
||||
http = 8500
|
||||
{% if pyopenssl_version.stdout is version('0.15', '>=') %}
|
||||
https = 8501
|
||||
{% endif %}
|
||||
}
|
||||
{% if pyopenssl_version.stdout is version('0.15', '>=') %}
|
||||
key_file = "{{ remote_dir }}/privatekey.pem"
|
||||
cert_file = "{{ remote_dir }}/cert.pem"
|
||||
{% endif %}
|
||||
|
|
|
@ -3,79 +3,82 @@
|
|||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
- name: Create EMAIL cron var
|
||||
- when:
|
||||
- not (ansible_os_family == 'Alpine' and ansible_distribution_version is version('3.15', '<')) # TODO
|
||||
block:
|
||||
- name: Create EMAIL cron var
|
||||
cronvar:
|
||||
name: EMAIL
|
||||
value: doug@ansibmod.con.com
|
||||
register: create_cronvar1
|
||||
|
||||
- name: Create EMAIL cron var again
|
||||
- name: Create EMAIL cron var again
|
||||
cronvar:
|
||||
name: EMAIL
|
||||
value: doug@ansibmod.con.com
|
||||
register: create_cronvar2
|
||||
|
||||
- name: Check cron var value
|
||||
- name: Check cron var value
|
||||
shell: crontab -l -u root | grep -c EMAIL=doug@ansibmod.con.com
|
||||
register: varcheck1
|
||||
|
||||
- name: Modify EMAIL cron var
|
||||
- name: Modify EMAIL cron var
|
||||
cronvar:
|
||||
name: EMAIL
|
||||
value: jane@ansibmod.con.com
|
||||
register: create_cronvar3
|
||||
|
||||
- name: Check cron var value again
|
||||
- name: Check cron var value again
|
||||
shell: crontab -l -u root | grep -c EMAIL=jane@ansibmod.con.com
|
||||
register: varcheck2
|
||||
|
||||
- name: Remove EMAIL cron var
|
||||
- name: Remove EMAIL cron var
|
||||
cronvar:
|
||||
name: EMAIL
|
||||
state: absent
|
||||
register: remove_cronvar1
|
||||
|
||||
- name: Remove EMAIL cron var again
|
||||
- name: Remove EMAIL cron var again
|
||||
cronvar:
|
||||
name: EMAIL
|
||||
state: absent
|
||||
register: remove_cronvar2
|
||||
|
||||
- name: Check cron var value again
|
||||
- name: Check cron var value again
|
||||
shell: crontab -l -u root | grep -c EMAIL
|
||||
register: varcheck3
|
||||
failed_when: varcheck3.rc == 0
|
||||
|
||||
- name: Add cron var to custom file
|
||||
- name: Add cron var to custom file
|
||||
cronvar:
|
||||
name: TESTVAR
|
||||
value: somevalue
|
||||
cron_file: cronvar_test
|
||||
register: custom_cronfile1
|
||||
|
||||
- name: Add cron var to custom file again
|
||||
- name: Add cron var to custom file again
|
||||
cronvar:
|
||||
name: TESTVAR
|
||||
value: somevalue
|
||||
cron_file: cronvar_test
|
||||
register: custom_cronfile2
|
||||
|
||||
- name: Check cron var value in custom file
|
||||
- name: Check cron var value in custom file
|
||||
command: grep -c TESTVAR=somevalue {{ cron_config_path }}/cronvar_test
|
||||
register: custom_varcheck1
|
||||
|
||||
- name: Change cron var in custom file
|
||||
- name: Change cron var in custom file
|
||||
cronvar:
|
||||
name: TESTVAR
|
||||
value: newvalue
|
||||
cron_file: cronvar_test
|
||||
register: custom_cronfile3
|
||||
|
||||
- name: Check cron var value in custom file
|
||||
- name: Check cron var value in custom file
|
||||
command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test
|
||||
register: custom_varcheck2
|
||||
|
||||
- name: Remove cron var from custom file
|
||||
- name: Remove cron var from custom file
|
||||
cronvar:
|
||||
name: TESTVAR
|
||||
value: newvalue
|
||||
|
@ -83,7 +86,7 @@
|
|||
state: absent
|
||||
register: custom_remove_cronvar1
|
||||
|
||||
- name: Remove cron var from custom file again
|
||||
- name: Remove cron var from custom file again
|
||||
cronvar:
|
||||
name: TESTVAR
|
||||
value: newvalue
|
||||
|
@ -91,12 +94,12 @@
|
|||
state: absent
|
||||
register: custom_remove_cronvar2
|
||||
|
||||
- name: Check cron var value
|
||||
- name: Check cron var value
|
||||
command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test
|
||||
register: custom_varcheck3
|
||||
failed_when: custom_varcheck3.rc == 0
|
||||
|
||||
- name: Esure cronvar tasks did the right thing
|
||||
- name: Esure cronvar tasks did the right thing
|
||||
assert:
|
||||
that:
|
||||
- create_cronvar1 is changed
|
||||
|
|
|
@ -8,6 +8,18 @@
|
|||
suffix: .django_manage
|
||||
register: tmp_django_root
|
||||
|
||||
- name: Install virtualenv
|
||||
package:
|
||||
name: virtualenv
|
||||
state: present
|
||||
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
||||
|
||||
- name: Install virtualenv
|
||||
package:
|
||||
name: python-virtualenv
|
||||
state: present
|
||||
when: ansible_os_family == 'Archlinux'
|
||||
|
||||
- name: Install required library
|
||||
pip:
|
||||
name: django
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
include_tasks: sparse.yml
|
||||
when:
|
||||
- not (ansible_os_family == 'Darwin' and ansible_distribution_version is version('11', '<'))
|
||||
- not (ansible_os_family == 'Alpine') # TODO figure out why it fails
|
||||
|
||||
- name: Include tasks to test playing with symlinks
|
||||
include_tasks: symlinks.yml
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
- name: "Create filesystem"
|
||||
- name: "Create filesystem ({{ fstype }})"
|
||||
community.general.filesystem:
|
||||
dev: '{{ dev }}'
|
||||
fstype: '{{ fstype }}'
|
||||
|
|
|
@ -48,10 +48,18 @@
|
|||
# reiserfs-utils package not available with Fedora 35 on CI
|
||||
- 'not (ansible_distribution == "Fedora" and (ansible_facts.distribution_major_version | int >= 35) and
|
||||
item.0.key == "reiserfs")'
|
||||
# reiserfs packages apparently not available with Alpine
|
||||
- 'not (ansible_distribution == "Alpine" and item.0.key == "reiserfs")'
|
||||
# ocfs2 only available on Debian based distributions
|
||||
- 'not (item.0.key == "ocfs2" and ansible_os_family != "Debian")'
|
||||
# Tests use losetup which can not be used inside unprivileged container
|
||||
- 'not (item.0.key == "lvm" and ansible_virtualization_type in ["docker", "container", "containerd"])'
|
||||
# vfat resizing fails on Debian (but not Ubuntu)
|
||||
- 'not (item.0.key == "vfat" and ansible_distribution == "Debian")' # TODO: figure out why it fails, fix it!
|
||||
# vfat resizing fails on ArchLinux
|
||||
- 'not (item.0.key == "vfat" and ansible_distribution == "Archlinux")' # TODO: figure out why it fails, fix it!
|
||||
# btrfs-progs cannot be installed on ArchLinux
|
||||
- 'not (item.0.key == "btrfs" and ansible_distribution == "Archlinux")' # TODO: figure out why it fails, fix it!
|
||||
|
||||
# On CentOS 6 shippable containers, wipefs seems unable to remove vfat signatures
|
||||
- 'not (ansible_distribution == "CentOS" and ansible_distribution_version is version("7.0", "<") and
|
||||
|
@ -65,6 +73,9 @@
|
|||
- 'not (ansible_os_family == "Suse" and ansible_distribution_major_version|int != 42 and
|
||||
item.0.key == "xfs" and ansible_python.version.major == 2)'
|
||||
|
||||
# TODO: something seems to be broken on Alpine
|
||||
- 'not (ansible_distribution == "Alpine")'
|
||||
|
||||
loop: "{{ query('dict', tested_filesystems)|product(['create_fs', 'overwrite_another_fs', 'remove_fs'])|list }}"
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
- not (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('16.04', '<='))
|
||||
- ansible_system != "FreeBSD"
|
||||
- not (ansible_facts.os_family == "RedHat" and ansible_facts.distribution_major_version is version('8', '>='))
|
||||
- ansible_os_family != 'Archlinux' # TODO
|
||||
|
||||
- name: "Install btrfs tools (Ubuntu <= 16.04)"
|
||||
ansible.builtin.package:
|
||||
|
@ -60,7 +61,7 @@
|
|||
state: present
|
||||
when:
|
||||
- ansible_system == 'Linux'
|
||||
- ansible_os_family not in ['Suse', 'RedHat']
|
||||
- ansible_os_family not in ['Suse', 'RedHat', 'Alpine']
|
||||
|
||||
- name: "Install reiserfs progs (FreeBSD)"
|
||||
ansible.builtin.package:
|
||||
|
@ -111,6 +112,7 @@
|
|||
- ansible_system == 'Linux'
|
||||
- ansible_os_family != 'Suse'
|
||||
- ansible_os_family != 'RedHat' or (ansible_distribution == 'CentOS' and ansible_distribution_version is version('7.0', '=='))
|
||||
- ansible_os_family != 'Alpine'
|
||||
block:
|
||||
- name: "Install fatresize"
|
||||
ansible.builtin.package:
|
||||
|
|
|
@ -21,7 +21,11 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
- include_vars: '{{ item }}'
|
||||
- when:
|
||||
- not (ansible_os_family == 'Alpine') # TODO
|
||||
block:
|
||||
|
||||
- include_vars: '{{ item }}'
|
||||
with_first_found:
|
||||
- files:
|
||||
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
|
||||
|
@ -30,30 +34,30 @@
|
|||
- 'default.yml'
|
||||
paths: '../vars'
|
||||
|
||||
- name: Install dependencies for test
|
||||
- name: Install dependencies for test
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
loop: "{{ test_packages }}"
|
||||
when: ansible_distribution != "MacOSX"
|
||||
|
||||
- name: Install a gem
|
||||
- name: Install a gem
|
||||
gem:
|
||||
name: gist
|
||||
state: present
|
||||
register: install_gem_result
|
||||
ignore_errors: yes
|
||||
|
||||
# when running as root on Fedora, '--install-dir' is set in the os defaults which is
|
||||
# incompatible with '--user-install', we ignore this error for this case only
|
||||
- name: fail if failed to install gem
|
||||
# when running as root on Fedora, '--install-dir' is set in the os defaults which is
|
||||
# incompatible with '--user-install', we ignore this error for this case only
|
||||
- name: fail if failed to install gem
|
||||
fail:
|
||||
msg: "failed to install gem: {{ install_gem_result.msg }}"
|
||||
when:
|
||||
- install_gem_result is failed
|
||||
- not (ansible_user_uid == 0 and "User --install-dir or --user-install but not both" not in install_gem_result.msg)
|
||||
|
||||
- block:
|
||||
- block:
|
||||
- name: List gems
|
||||
command: gem list
|
||||
register: current_gems
|
||||
|
@ -81,8 +85,8 @@
|
|||
- current_gems.stdout is not search('gist\s+\([0-9.]+\)')
|
||||
when: not install_gem_result is failed
|
||||
|
||||
# install gem in --no-user-install
|
||||
- block:
|
||||
# install gem in --no-user-install
|
||||
- block:
|
||||
- name: Install a gem with --no-user-install
|
||||
gem:
|
||||
name: gist
|
||||
|
@ -117,8 +121,8 @@
|
|||
- current_gems.stdout is not search('gist\s+\([0-9.]+\)')
|
||||
when: ansible_user_uid == 0
|
||||
|
||||
# Check cutom gem directory
|
||||
- name: Install gem in a custom directory with incorrect options
|
||||
# Check cutom gem directory
|
||||
- name: Install gem in a custom directory with incorrect options
|
||||
gem:
|
||||
name: gist
|
||||
state: present
|
||||
|
@ -126,17 +130,17 @@
|
|||
ignore_errors: yes
|
||||
register: install_gem_fail_result
|
||||
|
||||
- debug:
|
||||
- debug:
|
||||
var: install_gem_fail_result
|
||||
tags: debug
|
||||
|
||||
- name: Ensure previous task failed
|
||||
- name: Ensure previous task failed
|
||||
assert:
|
||||
that:
|
||||
- install_gem_fail_result is failed
|
||||
- install_gem_fail_result.msg == 'install_dir requires user_install=false'
|
||||
|
||||
- name: Install a gem in a custom directory
|
||||
- name: Install a gem in a custom directory
|
||||
gem:
|
||||
name: gist
|
||||
state: present
|
||||
|
@ -144,21 +148,21 @@
|
|||
install_dir: "{{ remote_tmp_dir }}/gems"
|
||||
register: install_gem_result
|
||||
|
||||
- name: Find gems in custom directory
|
||||
- name: Find gems in custom directory
|
||||
find:
|
||||
paths: "{{ remote_tmp_dir }}/gems/gems"
|
||||
file_type: directory
|
||||
contains: gist
|
||||
register: gem_search
|
||||
|
||||
- name: Ensure gem was installed in custom directory
|
||||
- name: Ensure gem was installed in custom directory
|
||||
assert:
|
||||
that:
|
||||
- install_gem_result is changed
|
||||
- gem_search.files[0].path is search('gist-[0-9.]+')
|
||||
ignore_errors: yes
|
||||
|
||||
- name: Remove a gem in a custom directory
|
||||
- name: Remove a gem in a custom directory
|
||||
gem:
|
||||
name: gist
|
||||
state: absent
|
||||
|
@ -166,21 +170,21 @@
|
|||
install_dir: "{{ remote_tmp_dir }}/gems"
|
||||
register: install_gem_result
|
||||
|
||||
- name: Find gems in custom directory
|
||||
- name: Find gems in custom directory
|
||||
find:
|
||||
paths: "{{ remote_tmp_dir }}/gems/gems"
|
||||
file_type: directory
|
||||
contains: gist
|
||||
register: gem_search
|
||||
|
||||
- name: Ensure gem was removed in custom directory
|
||||
- name: Ensure gem was removed in custom directory
|
||||
assert:
|
||||
that:
|
||||
- install_gem_result is changed
|
||||
- gem_search.files | length == 0
|
||||
|
||||
# Custom directory for executables (--bindir)
|
||||
- name: Install gem with custom bindir
|
||||
# Custom directory for executables (--bindir)
|
||||
- name: Install gem with custom bindir
|
||||
gem:
|
||||
name: gist
|
||||
state: present
|
||||
|
@ -189,18 +193,18 @@
|
|||
user_install: no # Avoid conflicts between --install-dir and --user-install when running as root on CentOS / Fedora / RHEL
|
||||
register: install_gem_result
|
||||
|
||||
- name: Get stats of gem executable
|
||||
- name: Get stats of gem executable
|
||||
stat:
|
||||
path: "{{ remote_tmp_dir }}/custom_bindir/gist"
|
||||
register: gem_bindir_stat
|
||||
|
||||
- name: Ensure gem executable was installed in custom directory
|
||||
- name: Ensure gem executable was installed in custom directory
|
||||
assert:
|
||||
that:
|
||||
- install_gem_result is changed
|
||||
- gem_bindir_stat.stat.exists and gem_bindir_stat.stat.isreg
|
||||
|
||||
- name: Remove gem with custom bindir
|
||||
- name: Remove gem with custom bindir
|
||||
gem:
|
||||
name: gist
|
||||
state: absent
|
||||
|
@ -209,12 +213,12 @@
|
|||
user_install: no # Avoid conflicts between --install-dir and --user-install when running as root on CentOS / Fedora / RHEL
|
||||
register: install_gem_result
|
||||
|
||||
- name: Get stats of gem executable
|
||||
- name: Get stats of gem executable
|
||||
stat:
|
||||
path: "{{ remote_tmp_dir }}/custom_bindir/gist"
|
||||
register: gem_bindir_stat
|
||||
|
||||
- name: Ensure gem executable was removed from custom directory
|
||||
- name: Ensure gem executable was removed from custom directory
|
||||
assert:
|
||||
that:
|
||||
- install_gem_result is changed
|
||||
|
|
|
@ -171,4 +171,6 @@
|
|||
- jake_incorrect_pass_out is not changed and jake_incorrect_pass_out is failed and jake_incorrect_pass_out.msg == 'User exists but password is incorrect!'
|
||||
|
||||
# homectl was first introduced in systemd 245 so check version >= 245 and make sure system has systemd and homectl command
|
||||
when: systemd_version.rc == 0 and (systemd_version.stdout | regex_search('[0-9][0-9][0-9]') | int >= 245) and homectl_version.rc == 0
|
||||
when:
|
||||
- systemd_version.rc == 0 and (systemd_version.stdout | regex_search('[0-9][0-9][0-9]') | int >= 245) and homectl_version.rc == 0
|
||||
- ansible_distribution != 'Archlinux' # TODO!
|
||||
|
|
1
tests/integration/targets/iso_extract/vars/Alpine.yml
Normal file
1
tests/integration/targets/iso_extract/vars/Alpine.yml
Normal file
|
@ -0,0 +1 @@
|
|||
iso_extract_7zip_package: p7zip
|
1
tests/integration/targets/iso_extract/vars/Archlinux.yml
Normal file
1
tests/integration/targets/iso_extract/vars/Archlinux.yml
Normal file
|
@ -0,0 +1 @@
|
|||
iso_extract_7zip_package: p7zip
|
1
tests/integration/targets/iso_extract/vars/Debian.yml
Normal file
1
tests/integration/targets/iso_extract/vars/Debian.yml
Normal file
|
@ -0,0 +1 @@
|
|||
iso_extract_7zip_package: p7zip-full
|
|
@ -0,0 +1,2 @@
|
|||
passwordstore_packages:
|
||||
- pass
|
|
@ -0,0 +1,2 @@
|
|||
passwordstore_packages:
|
||||
- pass
|
1
tests/integration/targets/monit/vars/Alpine.yml
Normal file
1
tests/integration/targets/monit/vars/Alpine.yml
Normal file
|
@ -0,0 +1 @@
|
|||
monitrc: "/etc/monitrc"
|
1
tests/integration/targets/monit/vars/Archlinux.yml
Normal file
1
tests/integration/targets/monit/vars/Archlinux.yml
Normal file
|
@ -0,0 +1 @@
|
|||
monitrc: "/etc/monitrc"
|
|
@ -1,6 +1,9 @@
|
|||
- name: Skip unsupported platforms
|
||||
meta: end_play
|
||||
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version is not version('7', '>=')
|
||||
# TODO: figure out why Alpine does not work!
|
||||
when: |
|
||||
ansible_distribution == 'CentOS' and ansible_distribution_major_version is not version('7', '>=')
|
||||
or ansible_distribution == 'Alpine'
|
||||
|
||||
- name: Install Nomad and test
|
||||
vars:
|
||||
|
@ -9,10 +12,6 @@
|
|||
nomad_cmd: '{{ remote_tmp_dir }}/nomad'
|
||||
block:
|
||||
|
||||
- name: register pyOpenSSL version
|
||||
command: '{{ ansible_python_interpreter }} -c ''import OpenSSL; print(OpenSSL.__version__)'''
|
||||
register: pyopenssl_version
|
||||
|
||||
- name: Install requests<2.20 (CentOS/RHEL 6)
|
||||
pip:
|
||||
name: requests<2.20
|
||||
|
@ -32,8 +31,6 @@
|
|||
register: result
|
||||
until: result is success
|
||||
|
||||
- when: pyopenssl_version.stdout is version('0.15', '>=')
|
||||
block:
|
||||
- name: Generate privatekey
|
||||
community.crypto.openssl_privatekey:
|
||||
path: '{{ remote_tmp_dir }}/privatekey.pem'
|
||||
|
|
|
@ -20,17 +20,20 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
# -------------------------------------------------------------
|
||||
# Setup steps
|
||||
|
||||
# expand remote path
|
||||
- command: 'echo {{ remote_tmp_dir }}'
|
||||
- when:
|
||||
- not (ansible_os_family == 'Alpine') # TODO
|
||||
block:
|
||||
|
||||
# expand remote path
|
||||
- command: 'echo {{ remote_tmp_dir }}'
|
||||
register: echo
|
||||
- set_fact:
|
||||
- set_fact:
|
||||
remote_dir: '{{ echo.stdout }}'
|
||||
|
||||
- include_tasks: run.yml
|
||||
- include_tasks: run.yml
|
||||
vars:
|
||||
nodejs_version: '{{ item }}'
|
||||
nodejs_path: 'node-v{{ nodejs_version }}-{{ ansible_system|lower }}-x{{ ansible_userspace_bits }}'
|
||||
|
|
|
@ -5,6 +5,13 @@ my_pass: 'md5d5e044ccd9b4b8adc89e8fed2eb0db8a'
|
|||
my_pass_decrypted: '6EjMk<hcX3<5(Yp?Xi5aQ8eS`a#Ni'
|
||||
dsn: "DRIVER={PostgreSQL};Server=localhost;Port=5432;Database=postgres;Uid={{ my_user }};Pwd={{ my_pass_decrypted }};UseUnicode=True"
|
||||
packages:
|
||||
Alpine:
|
||||
- psqlodbc
|
||||
- unixodbc
|
||||
- unixodbc-dev
|
||||
- g++
|
||||
Archlinux:
|
||||
- unixodbc
|
||||
RedHat:
|
||||
- postgresql-odbc
|
||||
- unixODBC
|
||||
|
|
|
@ -3,45 +3,54 @@
|
|||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
#
|
||||
# Test for proper failures without pyodbc
|
||||
#
|
||||
# Some of the docker images already have pyodbc installed on it
|
||||
- include_tasks: no_pyodbc.yml
|
||||
- when:
|
||||
- ansible_os_family != 'Archlinux' # TODO install driver from AUR: https://aur.archlinux.org/packages/psqlodbc
|
||||
block:
|
||||
|
||||
#
|
||||
# Test for proper failures without pyodbc
|
||||
#
|
||||
# Some of the docker images already have pyodbc installed on it
|
||||
- include_tasks: no_pyodbc.yml
|
||||
when: ansible_os_family != 'FreeBSD' and ansible_os_family != 'Suse' and ansible_os_family != 'Debian'
|
||||
|
||||
#
|
||||
# Get pyodbc installed
|
||||
#
|
||||
- include_tasks: install_pyodbc.yml
|
||||
#
|
||||
# Get pyodbc installed
|
||||
#
|
||||
- include_tasks: install_pyodbc.yml
|
||||
|
||||
#
|
||||
# Test missing parameters & invalid DSN
|
||||
#
|
||||
- include_tasks: negative_tests.yml
|
||||
#
|
||||
# Test missing parameters & invalid DSN
|
||||
#
|
||||
- include_tasks: negative_tests.yml
|
||||
|
||||
#
|
||||
# Setup DSN per env
|
||||
#
|
||||
- name: Changing DSN for Suse
|
||||
#
|
||||
# Setup DSN per env
|
||||
#
|
||||
- name: Changing DSN for Suse
|
||||
set_fact:
|
||||
dsn: "DRIVER={PSQL};Server=localhost;Port=5432;Database=postgres;Uid={{ my_user }};Pwd={{ my_pass_decrypted }};UseUnicode=True"
|
||||
when: ansible_os_family == 'Suse'
|
||||
when: ansible_os_family == 'Suse' or ansible_os_family == 'Alpine'
|
||||
|
||||
- name: Changing DSN for Debian
|
||||
- name: Changing DSN for Alpine
|
||||
set_fact:
|
||||
dsn: "DRIVER={/usr/lib/psqlodbcw.so};Server=localhost;Port=5432;Database=postgres;Uid={{ my_user }};Pwd={{ my_pass_decrypted }};UseUnicode=True"
|
||||
when: ansible_os_family == 'Alpine'
|
||||
|
||||
- name: Changing DSN for Debian
|
||||
set_fact:
|
||||
dsn: "DRIVER={PostgreSQL Unicode};Server=localhost;Port=5432;Database=postgres;Uid={{ my_user }};Pwd={{ my_pass_decrypted }};UseUnicode=True"
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
#
|
||||
# Name setup database
|
||||
#
|
||||
- name: Create a user to run the tests with
|
||||
#
|
||||
# Name setup database
|
||||
#
|
||||
- name: Create a user to run the tests with
|
||||
shell: echo "CREATE USER {{ my_user }} SUPERUSER PASSWORD '{{ my_pass }}'" | psql postgres
|
||||
become_user: "{{ pg_user }}"
|
||||
become: True
|
||||
|
||||
- name: Create a table
|
||||
- name: Create a table
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: |
|
||||
|
@ -57,14 +66,14 @@
|
|||
become: True
|
||||
register: results
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is changed
|
||||
|
||||
#
|
||||
# Insert records
|
||||
#
|
||||
- name: Insert a record without params
|
||||
#
|
||||
# Insert records
|
||||
#
|
||||
- name: Insert a record without params
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: "INSERT INTO films (code, title, did, date_prod, kind, len) VALUES ('asdfg', 'My First Movie', 1, '2019-01-12', 'SyFi', '02:00')"
|
||||
|
@ -72,11 +81,11 @@
|
|||
become: True
|
||||
register: results
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is changed
|
||||
|
||||
- name: Insert a record with params
|
||||
- name: Insert a record with params
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: "INSERT INTO films (code, title, did, date_prod, kind, len) VALUES (?, ?, ?, ?, ?, ?)"
|
||||
|
@ -91,29 +100,29 @@
|
|||
become: True
|
||||
register: results
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is changed
|
||||
- results['row_count'] == -1
|
||||
- results['results'] == []
|
||||
- results['description'] == []
|
||||
|
||||
#
|
||||
# Select data
|
||||
#
|
||||
- name: Perform select single row without params (do not coherse changed)
|
||||
#
|
||||
# Select data
|
||||
#
|
||||
- name: Perform select single row without params (do not coherse changed)
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: "SELECT * FROM films WHERE code='asdfg'"
|
||||
register: results
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is changed
|
||||
- results is successful
|
||||
- results.row_count == 1
|
||||
|
||||
- name: Perform select multiple rows with params (coherse changed)
|
||||
- name: Perform select multiple rows with params (coherse changed)
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: 'SELECT * FROM films WHERE code=? or code=?'
|
||||
|
@ -123,19 +132,19 @@
|
|||
register: results
|
||||
changed_when: False
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is not changed
|
||||
- results is successful
|
||||
- results.row_count == 2
|
||||
|
||||
- name: Drop the table
|
||||
- name: Drop the table
|
||||
odbc:
|
||||
dsn: "{{ dsn }}"
|
||||
query: "DROP TABLE films"
|
||||
register: results
|
||||
|
||||
- assert:
|
||||
- assert:
|
||||
that:
|
||||
- results is successful
|
||||
- results is changed
|
||||
|
|
|
@ -6,37 +6,42 @@
|
|||
# Test code for the pids module
|
||||
# Copyright: (c) 2019, Saranya Sridharan
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
- name: Attempt installation of latest 'psutil' version
|
||||
|
||||
- when:
|
||||
- not (ansible_os_family == 'Alpine') # TODO
|
||||
block:
|
||||
|
||||
- name: Attempt installation of latest 'psutil' version
|
||||
pip:
|
||||
name: psutil
|
||||
ignore_errors: true
|
||||
register: psutil_latest_install
|
||||
|
||||
- name: Install greatest 'psutil' version which will work with all pip versions
|
||||
- name: Install greatest 'psutil' version which will work with all pip versions
|
||||
pip:
|
||||
name: psutil < 5.7.0
|
||||
when: psutil_latest_install is failed
|
||||
|
||||
- name: "Checking the empty result"
|
||||
- name: "Checking the empty result"
|
||||
pids:
|
||||
name: "blahblah"
|
||||
register: emptypids
|
||||
|
||||
- name: "Verify that the list of Process IDs (PIDs) returned is empty"
|
||||
- name: "Verify that the list of Process IDs (PIDs) returned is empty"
|
||||
assert:
|
||||
that:
|
||||
- emptypids is not changed
|
||||
- emptypids.pids == []
|
||||
|
||||
- name: "Picking a random process name"
|
||||
- name: "Picking a random process name"
|
||||
set_fact:
|
||||
random_name: some-random-long-name-{{ 99999999 | random }}
|
||||
|
||||
- name: "finding the 'sleep' binary"
|
||||
- name: "finding the 'sleep' binary"
|
||||
command: which sleep
|
||||
register: find_sleep
|
||||
|
||||
- name: "Copying 'sleep' binary"
|
||||
- name: "Copying 'sleep' binary"
|
||||
command: cp {{ find_sleep.stdout }} {{ remote_tmp_dir }}/{{ random_name }}
|
||||
# The following does not work on macOS 11.1 (it uses shutil.copystat, and that will die with a PermissionError):
|
||||
# copy:
|
||||
|
@ -45,53 +50,53 @@
|
|||
# mode: "0777"
|
||||
# remote_src: true
|
||||
|
||||
- name: Copy helper script
|
||||
- name: Copy helper script
|
||||
copy:
|
||||
src: obtainpid.sh
|
||||
dest: "{{ remote_tmp_dir }}/obtainpid.sh"
|
||||
|
||||
- name: "Running the copy of 'sleep' binary"
|
||||
- name: "Running the copy of 'sleep' binary"
|
||||
command: "sh {{ remote_tmp_dir }}/obtainpid.sh '{{ remote_tmp_dir }}/{{ random_name }}' '{{ remote_tmp_dir }}/obtainpid.txt'"
|
||||
|
||||
async: 100
|
||||
poll: 0
|
||||
|
||||
- name: "Wait for one second to make sure that the sleep copy has actually been started"
|
||||
- name: "Wait for one second to make sure that the sleep copy has actually been started"
|
||||
pause:
|
||||
seconds: 1
|
||||
|
||||
- name: "Checking the process IDs (PIDs) of sleep binary"
|
||||
- name: "Checking the process IDs (PIDs) of sleep binary"
|
||||
pids:
|
||||
name: "{{ random_name }}"
|
||||
register: pids
|
||||
|
||||
- name: "Checking that exact non-substring matches are required"
|
||||
- name: "Checking that exact non-substring matches are required"
|
||||
pids:
|
||||
name: "{{ random_name[0:5] }}"
|
||||
register: exactpidmatch
|
||||
|
||||
- name: "Checking that patterns can be used with the pattern option"
|
||||
- name: "Checking that patterns can be used with the pattern option"
|
||||
pids:
|
||||
pattern: "{{ random_name[0:5] }}"
|
||||
register: pattern_pid_match
|
||||
|
||||
- name: "Checking that case-insensitive patterns can be used with the pattern option"
|
||||
- name: "Checking that case-insensitive patterns can be used with the pattern option"
|
||||
pids:
|
||||
pattern: "{{ random_name[0:5] | upper }}"
|
||||
ignore_case: true
|
||||
register: caseinsensitive_pattern_pid_match
|
||||
|
||||
- name: "Checking that .* includes test pid"
|
||||
- name: "Checking that .* includes test pid"
|
||||
pids:
|
||||
pattern: .*
|
||||
register: match_all
|
||||
|
||||
- name: "Reading pid from the file"
|
||||
- name: "Reading pid from the file"
|
||||
slurp:
|
||||
src: "{{ remote_tmp_dir }}/obtainpid.txt"
|
||||
register: newpid
|
||||
|
||||
- name: "Verify that the Process IDs (PIDs) returned is not empty and also equal to the PIDs obtained in console"
|
||||
- name: "Verify that the Process IDs (PIDs) returned is not empty and also equal to the PIDs obtained in console"
|
||||
assert:
|
||||
that:
|
||||
- "pids.pids | join(' ') == newpid.content | b64decode | trim"
|
||||
|
@ -101,13 +106,13 @@
|
|||
- "caseinsensitive_pattern_pid_match.pids | join(' ') == newpid.content | b64decode | trim"
|
||||
- newpid.content | b64decode | trim | int in match_all.pids
|
||||
|
||||
- name: "Register output of bad input pattern"
|
||||
- name: "Register output of bad input pattern"
|
||||
pids:
|
||||
pattern: (unterminated
|
||||
register: bad_pattern_result
|
||||
ignore_errors: true
|
||||
|
||||
- name: "Verify that bad input pattern result is failed"
|
||||
- name: "Verify that bad input pattern result is failed"
|
||||
assert:
|
||||
that:
|
||||
- bad_pattern_result is failed
|
|
@ -3,7 +3,10 @@
|
|||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
- name: Include distribution specific variables
|
||||
- when:
|
||||
- not (ansible_os_family == 'Alpine' and ansible_distribution_version is version('3.15', '<')) # TODO
|
||||
block:
|
||||
- name: Include distribution specific variables
|
||||
include_vars: '{{ lookup(''first_found'', search) }}'
|
||||
vars:
|
||||
search:
|
||||
|
@ -14,13 +17,13 @@
|
|||
- default.yml
|
||||
paths:
|
||||
- vars
|
||||
- name: install cron package
|
||||
- name: install cron package
|
||||
package:
|
||||
name: '{{ cron_pkg }}'
|
||||
when: cron_pkg | default(false, true)
|
||||
register: cron_package_installed
|
||||
until: cron_package_installed is success
|
||||
- when: faketime_pkg | default(false, true)
|
||||
- when: faketime_pkg | default(false, true)
|
||||
block:
|
||||
- name: install cron and faketime packages
|
||||
package:
|
||||
|
@ -62,7 +65,7 @@
|
|||
owner: root
|
||||
group: wheel
|
||||
mode: '0644'
|
||||
- name: enable cron service
|
||||
- name: enable cron service
|
||||
service:
|
||||
daemon-reload: '{{ (ansible_service_mgr == ''systemd'') | ternary(true, omit) }}'
|
||||
name: '{{ cron_service }}'
|
||||
|
|
3
tests/integration/targets/setup_cron/vars/alpine.yml
Normal file
3
tests/integration/targets/setup_cron/vars/alpine.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
cron_pkg: cronie
|
||||
cron_service: cronie
|
||||
list_pkg_files: apk info -L
|
3
tests/integration/targets/setup_cron/vars/archlinux.yml
Normal file
3
tests/integration/targets/setup_cron/vars/archlinux.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
cron_pkg: cronie
|
||||
cron_service: cronie
|
||||
list_pkg_files: pacman -Ql
|
|
@ -4,6 +4,9 @@
|
|||
####################################################################
|
||||
|
||||
- name: Set up dummy flatpak repository remote
|
||||
when: |
|
||||
ansible_distribution == 'Fedora' or
|
||||
ansible_distribution == 'Ubuntu' and not ansible_distribution_major_version | int < 16
|
||||
block:
|
||||
- name: Copy repo into place
|
||||
unarchive:
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
keytool_package_name: openjdk11-jre-headless
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
keytool_package_name: jre11-openjdk-headless
|
|
@ -5,8 +5,17 @@
|
|||
####################################################################
|
||||
|
||||
- name: Include OS-specific variables
|
||||
include_vars: '{{ ansible_os_family }}.yml'
|
||||
when: not ansible_os_family == "Darwin"
|
||||
include_vars: '{{ lookup("first_found", search) }}'
|
||||
vars:
|
||||
search:
|
||||
files:
|
||||
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
|
||||
- '{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml'
|
||||
- '{{ ansible_distribution }}.yml'
|
||||
- '{{ ansible_os_family }}.yml'
|
||||
- default.yml
|
||||
paths:
|
||||
- vars
|
||||
|
||||
- name: Install OpenSSL
|
||||
become: True
|
||||
|
@ -14,49 +23,38 @@
|
|||
name: '{{ openssl_package_name }}'
|
||||
when: not ansible_os_family == 'Darwin'
|
||||
|
||||
- name: Install pyOpenSSL (Python 3)
|
||||
become: True
|
||||
package:
|
||||
name: '{{ pyopenssl_package_name_python3 }}'
|
||||
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '>=')
|
||||
|
||||
- name: Install pyOpenSSL (Python 2)
|
||||
become: True
|
||||
package:
|
||||
name: '{{ pyopenssl_package_name }}'
|
||||
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '<')
|
||||
|
||||
- name: Install pyOpenSSL (Darwin)
|
||||
become: True
|
||||
pip:
|
||||
name: pyOpenSSL
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
when: ansible_os_family == 'Darwin'
|
||||
|
||||
- when: ansible_facts.distribution ~ ansible_facts.distribution_major_version not in ['CentOS6', 'RedHat6']
|
||||
block:
|
||||
- name: Install cryptography (Python 3)
|
||||
become: true
|
||||
package:
|
||||
name: '{{ cryptography_package_name_python3 }}'
|
||||
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '>=')
|
||||
when: not cryptography_from_pip and ansible_python_version is version('3.0', '>=')
|
||||
|
||||
- name: Install cryptography (Python 2)
|
||||
become: true
|
||||
package:
|
||||
name: '{{ cryptography_package_name }}'
|
||||
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '<')
|
||||
when: not cryptography_from_pip and ansible_python_version is version('3.0', '<')
|
||||
|
||||
- name: Install cryptography (Darwin)
|
||||
- name: Install cryptography (pip)
|
||||
become: true
|
||||
pip:
|
||||
name: cryptography>=3.3
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
when: ansible_os_family == 'Darwin'
|
||||
when: cryptography_from_pip
|
||||
|
||||
- name: register pyOpenSSL version
|
||||
command: "{{ ansible_python.executable }} -c 'import OpenSSL; print(OpenSSL.__version__)'"
|
||||
register: pyopenssl_version
|
||||
- name: Install pyOpenSSL (Python 3)
|
||||
become: True
|
||||
package:
|
||||
name: '{{ pyopenssl_package_name_python3 }}'
|
||||
when: pyopenssl_package_name_python3 is defined and ansible_python_version is version('3.0', '>=')
|
||||
|
||||
- name: Install pyOpenSSL (Python 2)
|
||||
become: True
|
||||
package:
|
||||
name: '{{ pyopenssl_package_name }}'
|
||||
when: pyopenssl_package_name is defined and ansible_python_version is version('3.0', '<')
|
||||
|
||||
- name: register openssl version
|
||||
shell: "openssl version | cut -d' ' -f2"
|
||||
|
|
6
tests/integration/targets/setup_openssl/vars/Alpine.yml
Normal file
6
tests/integration/targets/setup_openssl/vars/Alpine.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
cryptography_package_name: py-cryptography
|
||||
cryptography_package_name_python3: py3-cryptography
|
||||
pyopenssl_package_name: py-openssl
|
||||
pyopenssl_package_name_python3: py3-openssl
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
|
@ -0,0 +1,6 @@
|
|||
cryptography_package_name: python-cryptography
|
||||
cryptography_package_name_python3: python-cryptography
|
||||
pyopenssl_package_name: python-pyopenssl
|
||||
pyopenssl_package_name_python3: python-pyopenssl
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
|
@ -0,0 +1,4 @@
|
|||
cryptography_package_name: python-cryptography
|
||||
cryptography_package_name_python3: python3-cryptography
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: '{{ ansible_python_version is version("3.8", ">=") }}'
|
1
tests/integration/targets/setup_openssl/vars/Darwin.yml
Normal file
1
tests/integration/targets/setup_openssl/vars/Darwin.yml
Normal file
|
@ -0,0 +1 @@
|
|||
cryptography_from_pip: true
|
|
@ -3,3 +3,4 @@ cryptography_package_name_python3: python3-cryptography
|
|||
pyopenssl_package_name: python-openssl
|
||||
pyopenssl_package_name_python3: python3-openssl
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
||||
|
|
|
@ -3,3 +3,4 @@ cryptography_package_name_python3: "py{{ ansible_python.version.major }}{{ ansib
|
|||
pyopenssl_package_name: py27-openssl
|
||||
pyopenssl_package_name_python3: "py{{ ansible_python.version.major }}{{ ansible_python.version.minor }}-openssl"
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
||||
|
|
|
@ -3,3 +3,4 @@ cryptography_package_name_python3: python3-cryptography
|
|||
pyopenssl_package_name: pyOpenSSL
|
||||
pyopenssl_package_name_python3: python3-pyOpenSSL
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
||||
|
|
|
@ -3,3 +3,4 @@ cryptography_package_name_python3: python3-cryptography
|
|||
pyopenssl_package_name: python-pyOpenSSL
|
||||
pyopenssl_package_name_python3: python3-pyOpenSSL
|
||||
openssl_package_name: openssl
|
||||
cryptography_from_pip: false
|
||||
|
|
|
@ -20,4 +20,5 @@
|
|||
cmd: |
|
||||
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*.repo
|
||||
sed -i 's%#baseurl=http://mirror.centos.org/$contentdir/$releasever/%baseurl=https://vault.centos.org/8.4.2105/%g' /etc/yum.repos.d/CentOS-Linux-*.repo
|
||||
ignore_errors: true # This fails for CentOS Stream 8
|
||||
when: ansible_distribution in 'CentOS' and ansible_distribution_major_version == '8'
|
||||
|
|
|
@ -99,6 +99,14 @@
|
|||
command: /sbin/service postgresql initdb
|
||||
when: ansible_os_family == "RedHat" and ansible_service_mgr != "systemd"
|
||||
|
||||
- name: Initialize postgres (Archlinux)
|
||||
command: su - postgres -c "initdb --locale en_US.UTF-8 -D '/var/lib/postgres/data'"
|
||||
when: ansible_os_family == "Archlinux"
|
||||
|
||||
- name: Initialize postgres (Alpine)
|
||||
command: su - postgres -c "initdb --locale en_US.UTF-8 -D '/var/lib/postgresql/data'"
|
||||
when: ansible_os_family == "Alpine"
|
||||
|
||||
- name: Initialize postgres (Debian)
|
||||
shell: . /usr/share/postgresql-common/maintscripts-functions && set_system_locale && /usr/bin/pg_createcluster -u postgres {{ pg_ver }} main
|
||||
args:
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
postgresql_packages:
|
||||
- "postgresql"
|
||||
- "py3-psycopg2"
|
||||
|
||||
pg_hba_location: "/var/lib/postgresql/data/pg_hba.conf"
|
||||
pg_dir: "/var/lib/postgresql/data"
|
|
@ -0,0 +1,6 @@
|
|||
postgresql_packages:
|
||||
- "postgresql"
|
||||
- "python-psycopg2"
|
||||
|
||||
pg_hba_location: "/var/lib/postgres/data/pg_hba.conf"
|
||||
pg_dir: "/var/lib/postgres/data"
|
|
@ -0,0 +1,8 @@
|
|||
postgresql_packages:
|
||||
- "postgresql"
|
||||
- "postgresql-common"
|
||||
- "python3-psycopg2"
|
||||
|
||||
pg_hba_location: "/etc/postgresql/13/main/pg_hba.conf"
|
||||
pg_dir: "/var/lib/postgresql/13/main"
|
||||
pg_ver: 13
|
|
@ -1,5 +1,11 @@
|
|||
# General
|
||||
redis_packages:
|
||||
Alpine:
|
||||
- redis
|
||||
Archlinux:
|
||||
- redis
|
||||
Debian:
|
||||
- redis-server
|
||||
Ubuntu:
|
||||
- redis-server
|
||||
openSUSE Leap:
|
||||
|
@ -12,6 +18,9 @@ redis_packages:
|
|||
- redis
|
||||
|
||||
redis_bin:
|
||||
Alpine: /usr/bin/redis-server
|
||||
Archlinux: /usr/bin/redis-server
|
||||
Debian: /usr/bin/redis-server
|
||||
Ubuntu: /usr/bin/redis-server
|
||||
openSUSE Leap: /usr/sbin/redis-server
|
||||
Fedora: /usr/bin/redis-server
|
||||
|
|
|
@ -8,4 +8,4 @@
|
|||
|
||||
- import_tasks: setup_redis_cluster.yml
|
||||
when:
|
||||
- ansible_distribution in ['CentOS', 'Fedora', 'FreeBSD', 'openSUSE Leap', 'Ubuntu']
|
||||
- ansible_distribution in ['CentOS', 'Fedora', 'FreeBSD', 'openSUSE Leap', 'Ubuntu', 'Debian', 'Archlinux', 'Alpine']
|
||||
|
|
|
@ -1,44 +1,11 @@
|
|||
# We run two servers listening different ports
|
||||
# to be able to check replication (one server for master, another for replica).
|
||||
|
||||
- name: Install redis server apt dependencies
|
||||
apt:
|
||||
- name: Install redis dependencies
|
||||
package:
|
||||
name: "{{ redis_packages[ansible_distribution] }}"
|
||||
state: latest
|
||||
policy_rc_d: 101
|
||||
when:
|
||||
- ansible_facts.pkg_mgr == 'apt'
|
||||
notify: cleanup redis
|
||||
|
||||
- name: Install redis server rpm dependencies
|
||||
yum:
|
||||
name: "{{ redis_packages[ansible_distribution] }}"
|
||||
state: latest
|
||||
when:
|
||||
- ansible_facts.pkg_mgr == 'yum'
|
||||
notify: cleanup redis
|
||||
|
||||
- name: Install redis rpm dependencies
|
||||
dnf:
|
||||
name: "{{ redis_packages[ansible_distribution] }}"
|
||||
state: latest
|
||||
when: ansible_facts.pkg_mgr == 'dnf'
|
||||
notify: cleanup redis
|
||||
|
||||
- name: Install redis server zypper dependencies
|
||||
zypper:
|
||||
name: "{{ redis_packages[ansible_distribution] }}"
|
||||
state: latest
|
||||
when:
|
||||
- ansible_facts.pkg_mgr == 'community.general.zypper'
|
||||
notify: cleanup redis
|
||||
|
||||
- name: Install redis FreeBSD dependencies
|
||||
community.general.pkgng:
|
||||
name: "{{ redis_packages[ansible_distribution] }}"
|
||||
state: latest
|
||||
when:
|
||||
- ansible_facts.pkg_mgr == 'community.general.pkgng'
|
||||
policy_rc_d: "{{ 101 if ansible_facts.pkg_mgr == 'apt' else omit }}"
|
||||
notify: cleanup redis
|
||||
|
||||
- name: Install redis module
|
||||
|
|
1
tests/integration/targets/setup_rundeck/vars/Alpine.yml
Normal file
1
tests/integration/targets/setup_rundeck/vars/Alpine.yml
Normal file
|
@ -0,0 +1 @@
|
|||
openjdk_pkg: openjdk11-jre-headless
|
|
@ -0,0 +1 @@
|
|||
openjdk_pkg: jre11-openjdk-headless
|
|
@ -1 +1 @@
|
|||
openjdk_pkg: openjdk-8-jre-headless
|
||||
openjdk_pkg: openjdk-11-jre-headless
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
- name: Install systemd-sysv on ubuntu 18
|
||||
- name: Install systemd-sysv on Ubuntu 18 and Debian
|
||||
apt:
|
||||
name: systemd-sysv
|
||||
state: present
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_major_version is version('18', '>=')
|
||||
when: (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version is version('18', '>=')) or (ansible_distribution == 'Debian')
|
||||
register: systemd_sysv_install
|
||||
|
||||
- name: Execute shutdown with custom message and delay
|
||||
|
|
|
@ -43,6 +43,12 @@
|
|||
#### timezone tests
|
||||
####
|
||||
|
||||
- name: make sure diffutils are installed on ArchLinux
|
||||
package:
|
||||
name: diffutils
|
||||
state: present
|
||||
when: ansible_distribution == 'Archlinux'
|
||||
|
||||
- name: make sure the dbus service is started under systemd
|
||||
systemd:
|
||||
name: dbus
|
||||
|
@ -57,7 +63,9 @@
|
|||
# Skip tests on Fedora 31 and 32 because dbus fails to start unless the container is run in priveleged mode.
|
||||
# Even then, it starts unreliably. This may be due to the move to cgroup v2 in Fedora 31 and 32.
|
||||
# https://www.redhat.com/sysadmin/fedora-31-control-group-v2
|
||||
when: ansible_facts.distribution ~ ansible_facts.distribution_major_version not in ['Fedora31', 'Fedora32']
|
||||
when:
|
||||
- ansible_facts.distribution ~ ansible_facts.distribution_major_version not in ['Fedora31', 'Fedora32']
|
||||
- not (ansible_os_family == 'Alpine') # TODO
|
||||
block:
|
||||
- name: set timezone to Etc/UTC
|
||||
timezone:
|
||||
|
|
|
@ -31,3 +31,5 @@
|
|||
with_items:
|
||||
- {node_version: 4.8.0, yarn_version: 1.6.0} # Lowest compatible nodejs version
|
||||
- {node_version: 8.0.0, yarn_version: 1.6.0}
|
||||
when:
|
||||
- not (ansible_os_family == 'Alpine') # TODO
|
||||
|
|
19
tests/utils/shippable/linux-community.sh
Executable file
19
tests/utils/shippable/linux-community.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -o pipefail -eux
|
||||
|
||||
declare -a args
|
||||
IFS='/:' read -ra args <<< "$1"
|
||||
|
||||
image="${args[1]}"
|
||||
python="${args[2]}"
|
||||
|
||||
if [ "${#args[@]}" -gt 3 ]; then
|
||||
target="shippable/posix/group${args[3]}/"
|
||||
else
|
||||
target="shippable/posix/"
|
||||
fi
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
||||
--docker "quay.io/ansible-community/test-image:${image}" --python "${python}"
|
Loading…
Reference in a new issue