  if [ -e /etc/hc-crontab ]  #was not reaped, so don't overwrite it
  then
    cp $SCRIPT_DIRECTORY/hc-crontab /etc/hc-crontab.spellnew
    echo /etc/hc-crontab installed as /etc/hc-crontab.spellnew
  else  
    cp $SCRIPT_DIRECTORY/hc-crontab /etc/
  fi &&
  for i in yearly monthly weekly daily hourly minutely; do
    mkdir -p /etc/cron.$i &&
    touch /etc/cron.$i/.keep
  done
  install $SCRIPT_DIRECTORY/run-parts /usr/bin/ &&
  if ! crontab -u root /etc/hc-crontab
  then
    echo Oops, you\'ll have to manually install the crontab. Sorry.
    false
  fi
