# Ask the user about the cookies that have been deemed "offensive"
# by the fortune-mod developers. The default is NO (that is, Do not
# install the offensive cookies) to be "school appropriate" (sic).

if ! grep -q "OFF=" $MODULE_CONFIG; then
  if  query  "Install the \"offensive\" cookies distributed with fortune?" n; then
    OFFENSIVE=1
  else
    OFFENSIVE=0
  fi
  echo  "OFF=OFFENSIVE=$OFFENSIVE" >> $MODULE_CONFIG
fi
