mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
6 lines
99 B
Bash
6 lines
99 B
Bash
#!/bin/sh
|
|
|
|
# auditd will not start if its log directory is missing
|
|
mkdir -p /var/log/audit
|
|
|
|
exit 0
|