#!/bin/sh

# Skip if systemd is running.
# commented out, we don't have a systemd timer yet
#if [ -d /run/systemd/system ]; then
#  exit 0
#fi

SCRIPT="/usr/share/aide/bin/dailyaidecheck"
[ -x "${SCRIPT}" ] && "${SCRIPT}" --crondaily

