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

This commit is contained in:
Menno van Leeuwen 2025-03-11 14:35:23 +01:00
parent c6c579061c
commit 0c15c77d01
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

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'