#!/bin/sh
if [ ! -d "/var/log/audit" ]; then
  mkdir -m 0775 -p /var/log/audit
  chown root:root /var/log/audit
fi

