Skip to content
Snippets Groups Projects
Commit 6bd2a7ed authored by Thomas Schneider's avatar Thomas Schneider
Browse files

*: Fix ansible-lint violations

parent 3092f4db
No related branches found
No related tags found
1 merge request!10Update CI to reasonable versions
Pipeline #5094 passed
......@@ -41,7 +41,10 @@
block:
- name: ensure we have our postgres backup script
copy:
src: "pgbackup{{ '-bullseye' if ansible_distribution_major_version|int(default=99) > 10 else '' }}.sh"
src: >-
pgbackup{{
'-bullseye' if ansible_distribution_major_version|int(default=99) > 10
else '' }}.sh
dest: /usr/local/bin/pgbackup.sh
owner: root
group: root
......
......@@ -9,11 +9,17 @@
file:
path: /etc/systemd/system/redis-server.service.d
state: directory
owner: root
group: root
mode: "0755"
- name: Configure redis-server systemd options
copy:
src: override.conf
dest: /etc/systemd/system/redis-server.service.d/override.conf
owner: root
group: root
mode: "0644"
notify:
- Reload systemd
- Restart redis-server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment