feat(aa): refractor template to allow multiple templates.

This commit is contained in:
Alexandre Pujol 2024-04-17 18:02:41 +01:00
parent 890275fb22
commit 8ef858ad35
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
20 changed files with 347 additions and 214 deletions

View file

@ -0,0 +1,21 @@
{{- /* apparmor.d - Full set of apparmor profiles */ -}}
{{- /* Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io> */ -}}
{{- /* SPDX-License-Identifier: GPL-2.0-only */ -}}
{{- define "file" -}}
{{- template "qualifier" . -}}
{{- if .Owner -}}
{{- "owner " -}}
{{- end -}}
{{- .Path -}}
{{- " " -}}
{{- with .Padding -}}
{{ . }}
{{- end -}}
{{- .Access -}}
{{- with .Target -}}
{{ " -> " }}{{ . }}
{{- end -}}
{{- "," -}}
{{- template "comment" . -}}
{{- end -}}