  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 &&
  mkdir -p /etc/cron.yearly &&
  mkdir -p /etc/cron.monthly &&
  mkdir -p /etc/cron.weekly &&
  mkdir -p /etc/cron.daily &&
  mkdir -p /etc/cron.hourly &&
  mkdir -p /etc/cron.minutely &&
  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
