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

12 lines
228 B
YAML
Raw Normal View History

2022-12-20 19:47:11 +01:00
---
- name: "disable root shell"
ansible.builtin.user:
name: "root"
shell: "/usr/sbin/nologin"
- name: "disable su for non-wheel users"
ansible.builtin.copy:
src: "./su"
dest: "/etc/pam.d/su"
mode: 0644