From 66d3b942ac759b28e9aef92ff8928627de2480c0 Mon Sep 17 00:00:00 2001 From: Jonathan Herlin Date: Thu, 1 Apr 2021 15:56:45 +0200 Subject: [PATCH] Remove incorrect horizon_post_install example This was accidentally included when importing the role. The referenced files are cloudkitty dashboards and does not belong here. Adjutant dashboards are automatically included as part of the os_horizon role so this file is not relevant Change-Id: I2ef49f81282370ceb1294279170b6a27f82be54f --- extras/horizon/horizon_post_install.yml | 28 ------------------------- 1 file changed, 28 deletions(-) delete mode 100644 extras/horizon/horizon_post_install.yml diff --git a/extras/horizon/horizon_post_install.yml b/extras/horizon/horizon_post_install.yml deleted file mode 100644 index 1fea761..0000000 --- a/extras/horizon/horizon_post_install.yml +++ /dev/null @@ -1,28 +0,0 @@ -- name: Enable the adjutant-dashboard Horizon panel - file: - src: "{{ item.src }}" - path: "{{ item.path }}" - state: "{{ item.state }}" - notify: Restart apache2 - with_items: - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_10_admin_group.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_10_admin_group.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_10_project_group.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_10_project_group.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_admin_hashmap_panel.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_admin_hashmap_panel.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_admin_rating_panel.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_admin_rating_panel.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_project_rating_panel.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_project_rating_panel.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_12_project_reporting_panel.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_12_project_reporting_panel.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}" - - src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_13_admin_pyscripts_panel.py" - path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_13_admin_pyscripts_panel.py" - state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"