#!/bin/sh
#
# Make sure the system log dir is always
# owned by the syslog group

if [ "$(stat --printf '%G' /var/log)" != "syslog" ]; then
    chown root:syslog /var/log
fi
