Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
<ind:pattern operation="pattern match">^database=file:/([/a-z.]+)$</ind:pattern>
{{% elif product == 'slmicro6' %}}
<ind:pattern operation="pattern match">^database_in=file:/([/a-z.]+)$</ind:pattern>
{{% elif product in [ 'ol10', 'rhel10', 'fedora' ] %}}
{{% elif product == "rhel9" %}}
<!-- RHEL 9.8 (aide-0.19.2-2.el9 and newer) uses _in suffix for database_in line -->
<ind:pattern operation="pattern match">^database(?:_in)?=file:(?:@@{DBDIR})?/(?:[a-z.]+/)*([a-z.]+)$</ind:pattern>
{{% elif product in ['ol10', 'rhel10', 'fedora' ] %}}
<ind:pattern operation="pattern match">^database_in=file:(?:@@{DBDIR})?/(?:[a-z.]+/)*([a-z.]+)$</ind:pattern>
{{% else %}}
<ind:pattern operation="pattern match">^database=file:(?:@@{DBDIR})?/(?:[a-z.]+/)*([a-z.]+)$</ind:pattern>
Expand Down
Loading