11 lines
217 B
YAML
11 lines
217 B
YAML
|
- name: Erzwinge_Aktualisierung
|
||
|
become: yes
|
||
|
command: update-motd
|
||
|
when: ansible_facts['os_family'] == "Ubuntu"
|
||
|
|
||
|
- name: restart_sshd
|
||
|
become: yes
|
||
|
systemd:
|
||
|
name: sshd
|
||
|
state: restarted
|