diff --git a/tasks/horizon_post_install.yml b/tasks/horizon_post_install.yml index d8175266..4411d13a 100644 --- a/tasks/horizon_post_install.yml +++ b/tasks/horizon_post_install.yml @@ -53,7 +53,6 @@ src: "{{ item.value.src }}" dest: "{{ horizon_lib_dir }}/openstack_dashboard/static/dashboard/{{ item.value.dest }}" with_dict: "{{ horizon_custom_uploads | default({}) }}" - when: horizon_custom_uploads is defined tags: - horizon-branding diff --git a/tasks/horizon_ssl_user_provided.yml b/tasks/horizon_ssl_user_provided.yml index b64607ac..0a49991e 100644 --- a/tasks/horizon_ssl_user_provided.yml +++ b/tasks/horizon_ssl_user_provided.yml @@ -13,17 +13,27 @@ # See the License for the specific language governing permissions and # limitations under the License. -- name: Drop user provided ssl cert and key +- name: Drop user provided ssl cert copy: - src: "{{ item.src }}" - dest: "{{ item.dest }}" + src: "{{ horizon_user_ssl_cert }}" + dest: "{{ horizon_ssl_cert }}" owner: "root" group: "root" - mode: "{{ item.mode }}" - with_items: - - { src: "{{ horizon_user_ssl_cert }}", dest: "{{ horizon_ssl_cert }}", mode: "0644" } - - { src: "{{ horizon_user_ssl_key }}", dest: "{{ horizon_ssl_key }}", mode: "0640" } - when: horizon_user_ssl_cert is defined and horizon_user_ssl_key is defined + mode: "0644" + when: horizon_user_ssl_cert is defined + notify: Restart apache2 + tags: + - horizon-configs + - horizon-ssl + +- name: Drop user provided ssl key + copy: + src: "{{ horizon_user_ssl_key }}" + dest: "{{ horizon_ssl_key }}" + owner: "root" + group: "root" + mode: "0640" + when: horizon_user_ssl_key is defined notify: Restart apache2 tags: - horizon-configs