feat: ensure ~/.hushlogin file exists with appropriate permissions

This commit is contained in:
2025-03-11 14:35:23 +01:00
parent c6c579061c
commit 0c15c77d01

View File

@@ -40,3 +40,9 @@
- python3-venv
state: present
become: true
- name: Ensure ~/.hushlogin exists
ansible.builtin.file:
path: ~/.hushlogin
state: touch
mode: '0644'