Remove apache to uwsgi migration tasks and variables

Change-Id: Idaec9f48bb1c7aff926071979773bca97f9ef2b3
This commit is contained in:
Jonathan Rosser 2022-02-02 04:11:53 -05:00
parent 5d0c34eddf
commit 24356495c3
4 changed files with 0 additions and 44 deletions

View File

@ -68,13 +68,3 @@
listen:
- "Restart gnocchi services"
- "venv changed"
# NOTE(noonedeadpunk): This task is created due to migration from apache to uwsgi
# which was introduced during train release. It can be dropped afterwards.
- name: Restart web server
service:
name: "{{ gnocchi_system_service_name }}"
enabled: yes
state: "restarted"
daemon_reload: yes
failed_when: false

View File

@ -48,22 +48,3 @@
notify:
- Restart gnocchi services
- Restart uwsgi services
- Restart web server
# NOTE(noonedeadpunk): This task is created due to migration from apache to uwsgi
# which was introduced during train release. It can be dropped afterwards.
- name: Drop Apache related configs
file:
path: "{{ item }}"
state: absent
with_items: "{{ gnocchi_apache_config }}"
notify:
- Restart web server
- name: Stop Apache listening on Gnocchi port
lineinfile:
path: "{{ gnocchi_apache_ports }}"
state: absent
line: "Listen {{ gnocchi_service_port }}"
notify:
- Restart web server

View File

@ -25,11 +25,3 @@ gnocchi_devel_distro_packages:
gnocchi_distro_packages:
- libxml2
# NOTE(noonedeadpunk): These variables are left for migration from apache to uwsgi
# which was introduced during train release. They can be dropped afterwards.
gnocchi_system_service_name: apache2
gnocchi_apache_config:
- "/etc/apache2/sites-enabled/gnocchi-httpd.conf"
- "/etc/apache2/sites-available/gnocchi-httpd.conf"
gnocchi_apache_ports: "/etc/apache2/ports.conf"

View File

@ -24,10 +24,3 @@ gnocchi_devel_distro_packages:
gnocchi_distro_packages:
- libxml2
# NOTE(noonedeadpunk): These variables are left for migration from apache to uwsgi
# which was introduced during train release. They can be dropped afterwards.
gnocchi_system_service_name: httpd
gnocchi_apache_config:
- "/etc/httpd/conf.d/gnocchi-httpd.conf"
gnocchi_apache_ports: "/etc/httpd/conf.d/ports.conf"