make ansible-lint common.yaml happy
This commit is contained in:
parent
7beb58a0a2
commit
d29de3a57f
|
@ -4,6 +4,7 @@
|
||||||
file:
|
file:
|
||||||
path: "{{ bitwarden_data }}"
|
path: "{{ bitwarden_data }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
mode: 0755
|
||||||
recurse: yes
|
recurse: yes
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: reload ssh
|
- name: reload ssh
|
||||||
service: name=ssh state=reloaded
|
service:
|
||||||
|
name: ssh
|
||||||
|
state: reloaded
|
||||||
|
|
||||||
- name: update trusted ca debian
|
- name: update trusted ca debian
|
||||||
shell: /usr/sbin/update-ca-certificates
|
command: /usr/sbin/update-ca-certificates
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
|
|
||||||
# handlers for etckeeper
|
# handlers for etckeeper
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
|
- import_tasks: packages.yaml
|
||||||
|
|
||||||
# Install unattended Upgrades
|
# Install unattended Upgrades
|
||||||
- import_tasks: updates.yaml
|
- import_tasks: updates.yaml
|
||||||
|
|
||||||
- import_tasks: packages.yaml
|
|
||||||
|
|
|
@ -7,4 +7,6 @@
|
||||||
- htop
|
- htop
|
||||||
- telnet
|
- telnet
|
||||||
- aptitude
|
- aptitude
|
||||||
state: latest
|
- apt-listchanges
|
||||||
|
- unattended-upgrades
|
||||||
|
state: present
|
||||||
|
|
|
@ -1,19 +1,10 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: Install unattended Upgrades
|
|
||||||
apt:
|
|
||||||
name:
|
|
||||||
- unattended-upgrades
|
|
||||||
- apt-listchanges
|
|
||||||
state: latest
|
|
||||||
notify: Record changes in etckeeper
|
|
||||||
|
|
||||||
|
|
||||||
- name: update Package lists
|
- name: update Package lists
|
||||||
cron:
|
cron:
|
||||||
name: update Package lists
|
name: update Package lists
|
||||||
hour: "{{3|random(seed=inventory_hostname+'updates')}}"
|
hour: "{{ 3|random(seed=inventory_hostname+'updates') }}"
|
||||||
minute: "{{59|random(seed=inventory_hostname+'updates')}}"
|
minute: "{{ 59|random(seed=inventory_hostname+'updates') }}"
|
||||||
job: /usr/bin/apt-get update > /dev/null
|
job: /usr/bin/apt-get update > /dev/null
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,6 +12,7 @@
|
||||||
template:
|
template:
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
dest: "/etc/apt/apt.conf.d/{{ item }}"
|
dest: "/etc/apt/apt.conf.d/{{ item }}"
|
||||||
|
mode: 0644
|
||||||
with_items:
|
with_items:
|
||||||
- 20auto-upgrades
|
- 20auto-upgrades
|
||||||
notify: Record changes in etckeeper
|
notify: Record changes in etckeeper
|
||||||
|
@ -30,6 +22,7 @@
|
||||||
template:
|
template:
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
dest: "/etc/apt/apt.conf.d/{{ item }}"
|
dest: "/etc/apt/apt.conf.d/{{ item }}"
|
||||||
|
mode: 0644
|
||||||
with_items:
|
with_items:
|
||||||
- 50unattended-upgrades
|
- 50unattended-upgrades
|
||||||
notify: Record changes in etckeeper
|
notify: Record changes in etckeeper
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: restart haproxy
|
- name: restart haproxy
|
||||||
service:
|
systemd:
|
||||||
name: haproxy
|
name: haproxy
|
||||||
state: restarted
|
state: restarted
|
||||||
|
|
||||||
- name: reload haproxy
|
- name: reload haproxy
|
||||||
service:
|
systemd:
|
||||||
name: haproxy
|
name: haproxy
|
||||||
state: reloaded
|
state: reloaded
|
||||||
|
|
||||||
- name: reload systemd config
|
- name: reload systemd config
|
||||||
shell: systemctl daemon-reload
|
systemd:
|
||||||
|
state: daemon-reload
|
||||||
|
|
||||||
- name: update certs
|
- name: update certs
|
||||||
shell: /usr/local/bin/update_haproxy_certs.sh
|
command: /usr/local/bin/update_haproxy_certs.sh
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
name:
|
name:
|
||||||
- liblua5.3-0
|
- liblua5.3-0
|
||||||
- libpcre3
|
- libpcre3
|
||||||
state: latest
|
state: present
|
||||||
|
|
||||||
- name: conflicted with haproxy package
|
- name: conflicted with haproxy package
|
||||||
apt:
|
apt:
|
||||||
|
@ -24,6 +24,7 @@
|
||||||
file:
|
file:
|
||||||
path: "{{ item }}"
|
path: "{{ item }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
mode: 0755
|
||||||
with_items:
|
with_items:
|
||||||
- /etc/haproxy/
|
- /etc/haproxy/
|
||||||
- /etc/haproxy/certs/
|
- /etc/haproxy/certs/
|
||||||
|
@ -33,6 +34,7 @@
|
||||||
copy:
|
copy:
|
||||||
src: errorfiles
|
src: errorfiles
|
||||||
dest: /etc/haproxy/
|
dest: /etc/haproxy/
|
||||||
|
mode: 0644
|
||||||
|
|
||||||
- name: copy haproxy binary
|
- name: copy haproxy binary
|
||||||
copy:
|
copy:
|
||||||
|
@ -91,13 +93,13 @@
|
||||||
cron:
|
cron:
|
||||||
name: renew certificates
|
name: renew certificates
|
||||||
weekday: SUN
|
weekday: SUN
|
||||||
minute: "{{59|random(seed=inventory_hostname+'renew certificates')}}"
|
minute: "{{ 59|random(seed=inventory_hostname+'renew certificates') }}"
|
||||||
hour: "{{23|random(seed=inventory_hostname+'renew certificates')}}"
|
hour: "{{ 23|random(seed=inventory_hostname+'renew certificates') }}"
|
||||||
job: /usr/local/bin/update_haproxy_certs.sh
|
job: /usr/local/bin/update_haproxy_certs.sh
|
||||||
|
|
||||||
- name: renew ocsp information
|
- name: renew ocsp information
|
||||||
cron:
|
cron:
|
||||||
name: renew ocsp
|
name: renew ocsp
|
||||||
minute: "{{59|random(seed=inventory_hostname+'renew ocsp')}}"
|
minute: "{{ 59|random(seed=inventory_hostname+'renew ocsp') }}"
|
||||||
hour: "{{23|random(seed=inventory_hostname+'renew ocsp')}}"
|
hour: "{{ 23|random(seed=inventory_hostname+'renew ocsp') }}"
|
||||||
job: /usr/local/bin/ocsp_update.sh
|
job: /usr/local/bin/ocsp_update.sh
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
file:
|
file:
|
||||||
path: "{{ nextcloud_data }}"
|
path: "{{ nextcloud_data }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
mode: 0755
|
||||||
recurse: yes
|
recurse: yes
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue