#!/bin/sh
pacman -Qq dcron 2>&1 >/dev/null
if [ $? -eq 0 ];then
  exec crond -f 2>&1
fi
exec crond -n 2>&1
