SUSE: Add support for openSUSE Leap 15
Change-Id: I7b915fd1688456673254fdb549ff93828087284d
This commit is contained in:
parent
0aad898848
commit
c42f59b36c
@ -29,9 +29,7 @@ galaxy_info:
|
|||||||
- 7
|
- 7
|
||||||
- name: opensuse
|
- name: opensuse
|
||||||
versions:
|
versions:
|
||||||
- 42.1
|
- all
|
||||||
- 42.2
|
|
||||||
- 42.3
|
|
||||||
categories:
|
categories:
|
||||||
- cloud
|
- cloud
|
||||||
- python
|
- python
|
||||||
|
@ -110,11 +110,12 @@
|
|||||||
line: "ServerSignature {{ horizon_apache_serversignature }}"
|
line: "ServerSignature {{ horizon_apache_serversignature }}"
|
||||||
notify: Restart apache2
|
notify: Restart apache2
|
||||||
|
|
||||||
# Removing the Listen from apache config to prevent conflicts with ports.conf on CentOS
|
# Removing the Listen (or listen.conf inclusion) from apache config to prevent
|
||||||
|
# conflicts with ports.conf on CentOS and openSUSE
|
||||||
- name: Remove Listen from Apache config
|
- name: Remove Listen from Apache config
|
||||||
lineinfile:
|
lineinfile:
|
||||||
dest: "{{ horizon_apache_security_conf }}"
|
dest: "{{ horizon_apache_security_conf }}"
|
||||||
regexp: '^(Listen.*)'
|
regexp: "{{ (ansible_pkg_mgr == 'zypper') | ternary('^(Include.*listen\\.conf)', '^(Listen.*)') }}"
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
line: '#\1'
|
line: '#\1'
|
||||||
notify: Restart apache2
|
notify: Restart apache2
|
||||||
|
@ -22,9 +22,11 @@
|
|||||||
jobs:
|
jobs:
|
||||||
- openstack-ansible-functional-distro_install-centos-7
|
- openstack-ansible-functional-distro_install-centos-7
|
||||||
- openstack-ansible-functional-distro_install-opensuse-423
|
- openstack-ansible-functional-distro_install-opensuse-423
|
||||||
|
- openstack-ansible-functional-distro_install-opensuse-150
|
||||||
- openstack-ansible-functional-distro_install-ubuntu-xenial
|
- openstack-ansible-functional-distro_install-ubuntu-xenial
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- openstack-ansible-functional-distro_install-centos-7
|
- openstack-ansible-functional-distro_install-centos-7
|
||||||
- openstack-ansible-functional-distro_install-opensuse-423
|
- openstack-ansible-functional-distro_install-opensuse-423
|
||||||
|
- openstack-ansible-functional-distro_install-opensuse-150
|
||||||
- openstack-ansible-functional-distro_install-ubuntu-xenial
|
- openstack-ansible-functional-distro_install-ubuntu-xenial
|
||||||
|
Loading…
Reference in New Issue
Block a user