ansible-edda/playbooks/roles/system/base/root/tasks/main.yml

12 lines
228 B
YAML
Raw Normal View History

2022-12-18 23:43:40 +01:00
---
2022-12-20 17:31:37 +01:00
- name: "disable root shell"
ansible.builtin.user:
name: "root"
shell: "/usr/sbin/nologin"
2022-12-20 17:31:37 +01:00
- name: "disable su for non-wheel users"
ansible.builtin.copy:
2022-12-20 17:31:37 +01:00
src: "./su"
dest: "/etc/pam.d/su"
mode: 0644