From 3f2be9a110031eab04618a9f5bff3d02675a0588 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Sat, 25 Oct 2025 15:09:29 +0200 Subject: [PATCH] fix: quote string --- tasks/profile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/profile.yaml b/tasks/profile.yaml index f5af9a8..de340e2 100644 --- a/tasks/profile.yaml +++ b/tasks/profile.yaml @@ -3,7 +3,7 @@ # manage systemwide prompt - name: "configure systemwide profile" ansible.builtin.lineinfile: - path: /etc/profile + path: "/etc/profile" line: "export PS1='\\[\\033[01;32m\\]\\u@\\h\\[\\033[00m\\]:\\[\\033[01;34m\\]\\w\\[\\033[00m\\]\\$ '" create: true mode: "0644"