Skip to content

Commit

Permalink
fix: remove single quotes from Jinja regex
Browse files Browse the repository at this point in the history
Unnecessary in this instance and salt trips with claiming to have found
"unknown escape character".

Fixes: #65
  • Loading branch information
ben-grande committed Jun 21, 2024
1 parent c84dfea commit bd5c635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/kicksecure-minimal/install.sls
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include:
- require:
- pkg: "{{ slsdotpath }}-installed"
- name: /etc/apt/sources.list
- regex: "^\s*deb"
- regex: ^\s*deb
- ignore_missing: True

{% endif %}

0 comments on commit bd5c635

Please sign in to comment.