Remove skip_common_setup flag
This commit is contained in:
parent
a54b847294
commit
bc3310066a
17 changed files with 106 additions and 126 deletions
|
|
@ -1,14 +1,14 @@
|
|||
- include_tasks: "sudoers.yml"
|
||||
- include_tasks: 'sudoers.yml'
|
||||
loop:
|
||||
- { src: "sudoers.j2", dest: "/etc/sudoers.d/20-ansible-extra" }
|
||||
- { src: 'sudoers.j2', dest: '/etc/sudoers.d/20-ansible-extra' }
|
||||
|
||||
- name: copy ssh template
|
||||
template:
|
||||
src: "sshd_config.j2"
|
||||
dest: "/etc/ssh/sshd_config"
|
||||
src: 'sshd_config.j2'
|
||||
dest: '/etc/ssh/sshd_config'
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
mode: '0644'
|
||||
notify: reload ssh
|
||||
|
||||
- name: viva la hollande
|
||||
|
|
@ -39,13 +39,13 @@
|
|||
|
||||
- name: copy firewall template
|
||||
template:
|
||||
src: "nftables.j2"
|
||||
dest: "/etc/nftables.conf"
|
||||
src: 'nftables.j2'
|
||||
dest: '/etc/nftables.conf'
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0600"
|
||||
mode: '0600'
|
||||
notify: restart nftables
|
||||
|
||||
# see https://wiki.debian.org/systemd#Orphaned_processes
|
||||
- name: enable loginctl user-linger
|
||||
command: "loginctl enable-linger {{ default_user|quote }}" # noqa 301
|
||||
command: 'loginctl enable-linger {{ default_user|quote }}' # noqa 301
|
||||
|
|
|
|||
Reference in a new issue