mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
enable service integration test target for rhel8 beta (#48939)
Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
parent
6c61336a4b
commit
a5d98d69ff
2 changed files with 1 additions and 2 deletions
|
@ -3,4 +3,3 @@ shippable/posix/group1
|
||||||
skip/freebsd
|
skip/freebsd
|
||||||
skip/osx
|
skip/osx
|
||||||
systemd
|
systemd
|
||||||
skip/rhel8.0
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
- name: detect systemd init system
|
- name: detect systemd init system
|
||||||
set_fact:
|
set_fact:
|
||||||
service_type: systemd
|
service_type: systemd
|
||||||
when: (ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux'] and ( ansible_distribution_version is version('7', '>=') and ansible_distribution_version is version('8', '<'))) or ansible_distribution == 'Fedora' or (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('15.04', '>=')) or (ansible_distribution == 'Debian' and ansible_distribution_version is version('8', '>=')) or ansible_os_family == 'Suse'
|
when: (ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux'] and ansible_distribution_major_version is version('7', '>=')) or ansible_distribution == 'Fedora' or (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('15.04', '>=')) or (ansible_distribution == 'Debian' and ansible_distribution_version is version('8', '>=')) or ansible_os_family == 'Suse'
|
||||||
- name: detect upstart init system
|
- name: detect upstart init system
|
||||||
set_fact:
|
set_fact:
|
||||||
service_type: upstart
|
service_type: upstart
|
||||||
|
|
Loading…
Reference in a new issue