ensures ll alias on host

This commit is contained in:
2025-07-03 11:28:48 +02:00
parent 5a7032da89
commit 6bcc8ebe4c

View File

@@ -9,6 +9,18 @@
roles: roles:
- authorized_keys - authorized_keys
- name: Ensure ll alias is set
hosts: all
become: yes
tasks:
- name: Add ll alias to /etc/bash.bashrc
ansible.builtin.lineinfile:
path: /etc/bash.bashrc
line: "alias ll='ls -l --color=auto'"
state: present
create: yes
- name: Clean up unused Docker data - name: Clean up unused Docker data
hosts: Docker_Hosts hosts: Docker_Hosts
tasks: tasks: