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:
parent
31e2a20374
commit
231229f33f
1 changed files with 8 additions and 0 deletions
8
playbooks/on-off/root_bash.yml
Normal file
8
playbooks/on-off/root_bash.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- hosts: all
|
||||
tasks:
|
||||
- name: ensure root has /bin/bash
|
||||
become: true
|
||||
ansible.builtin.user:
|
||||
name: root
|
||||
shell: /bin/bash
|
Loading…
Reference in a new issue