From bd5c6353eca650863f11054ae9de6e6e70357266 Mon Sep 17 00:00:00 2001 From: Ben Grande Date: Fri, 21 Jun 2024 19:59:01 +0200 Subject: [PATCH] fix: remove single quotes from Jinja regex Unnecessary in this instance and salt trips with claiming to have found "unknown escape character". Fixes: https://github.com/ben-grande/qusal/issues/65 --- salt/kicksecure-minimal/install.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/kicksecure-minimal/install.sls b/salt/kicksecure-minimal/install.sls index 1b074c7..994cbd3 100644 --- a/salt/kicksecure-minimal/install.sls +++ b/salt/kicksecure-minimal/install.sls @@ -29,7 +29,7 @@ include: - require: - pkg: "{{ slsdotpath }}-installed" - name: /etc/apt/sources.list - - regex: "^\s*deb" + - regex: ^\s*deb - ignore_missing: True {% endif %}