diff options
-rw-r--r-- | root_iproute_color.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/root_iproute_color.yml b/root_iproute_color.yml new file mode 100644 index 0000000..dd12427 --- /dev/null +++ b/root_iproute_color.yml @@ -0,0 +1,10 @@ +--- +- name: Make sure colorful ls + hosts: server + gather_facts: false + tasks: + - name: Add line + lineinfile: + path: ~/.bashrc + state: present + line: "alias ip='ip --color=auto'" |