20251216T011536CET

This commit is contained in:
Sjaak van den Berg
2025-12-16 01:15:36 +01:00
parent f2cbeabed5
commit b229cefdc8
6 changed files with 109 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
---
- name: set banner
ansible.builtin.copy:
src: banner
dest: /etc/motd
owner: root
group: root
mode: "0644"
- name: setup bash
ansible.builtin.template:
src: .bashrc.j2
dest: "{{ item.home_dir }}/.bashrc"
owner: "{{ item.name }}"
group: "{{ item.name }}"
mode: "0644"
loop: "{{ users }}"