Playbook: setze root-shell auf /bin/bash hinzugefügt (#373)

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#373
Co-authored-by: mg <michael.grote@posteo.de>
Co-committed-by: mg <michael.grote@posteo.de>
This commit is contained in:
Michael Grote 2022-05-27 12:05:42 +02:00
parent 31e2a20374
commit 231229f33f

View file

@ -0,0 +1,8 @@
---
- hosts: all
tasks:
- name: ensure root has /bin/bash
become: true
ansible.builtin.user:
name: root
shell: /bin/bash