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
This commit is contained in:
Ben Grande 2024-06-21 19:59:01 +02:00
parent c84dfea48e
commit bd5c6353ec
No known key found for this signature in database
GPG Key ID: 00C64E14F51F9E56

View File

@ -29,7 +29,7 @@ include:
- require:
- pkg: "{{ slsdotpath }}-installed"
- name: /etc/apt/sources.list
- regex: "^\s*deb"
- regex: ^\s*deb
- ignore_missing: True
{% endif %}