  if [ -e /etc/fcrontab ]  #was not reaped, so don't overwrite it
  then
    cp $SCRIPT_DIRECTORY/fcrontab /etc/fcrontab.spellnew
    echo /etc/fcrontab installed as /etc/fcrontab.spellnew
  else  
    cp $SCRIPT_DIRECTORY/fcrontab /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 ! fcrontab -u systab /etc/fcrontab
  then
    echo fcron version must be at least 2.9.2. Please recast.
    false
  fi
