28 lines
852 B
YAML
28 lines
852 B
YAML
---
|
|
|
|
- name: Put logo file
|
|
ansible.builtin.copy:
|
|
src: files/ndfr_casual.png
|
|
dest: "{{ phpbb_app_home }}/styles/prosilver/theme/images/ndfr_casual.png"
|
|
owner: root
|
|
group: www-data
|
|
mode: "0o640"
|
|
|
|
- name: Replace logo
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ phpbb_app_home }}/styles/prosilver/theme/colours.css"
|
|
search_string: "background-image: url(\"./images/site_logo.svg\");"
|
|
line: " background-image: url(\"./images/ndfr_casual.png\");"
|
|
|
|
- name: Stretch logo (width)
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ phpbb_app_home }}/styles/prosilver/theme/common.css"
|
|
search_string: "width: 149px;"
|
|
line: " width: 200px;"
|
|
|
|
- name: Stretch logo (height)
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ phpbb_app_home }}/styles/prosilver/theme/common.css"
|
|
search_string: "height: 52px;"
|
|
line: " height: 80px;"
|