feat(aa): add some missing rule template.

This commit is contained in:
Alexandre Pujol 2024-04-25 14:01:04 +01:00
parent 978daa446b
commit 068373405f
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
4 changed files with 36 additions and 2 deletions

View file

@ -22,6 +22,10 @@
{{- template "include" . -}}
{{- end -}}
{{- if eq $type "All" -}}
{{- template "all" . -}}
{{- end -}}
{{- if eq $type "Rlimit" -}}
{{- template "rlimit" . -}}
{{- end -}}
@ -62,6 +66,10 @@
{{- template "mqueue" . -}}
{{- end -}}
{{- if eq $type "IOUring" -}}
{{- template "io_uring" . -}}
{{- end -}}
{{- if eq $type "Unix" -}}
{{- template "unix" . -}}
{{- end -}}