. $GRIMOIRE/FUNCTIONS &&

config_query_multi CHOSEN_SCRIPTS\
                   "Which script suite(s) would you like to install?" \
                   "cauldron" \
                   "enchantment" &&

for scripts in $CHOSEN_SCRIPTS
do
  if [[ "$scripts" == "enchantment" ]]
  then
    config_query_multi INTERFACES \
                       "Which installer interfaces would you like installed?" \
                       "shell" \
                       "menu"
  fi
done &&

config_query_string SCRIPT_BASE \
                    "What should the base path for the scripts be?" \
                    "/usr/share/smgl" &&

config_query_string ETC_BASE \
                    "What should the base path for the config files be?" \
                    "/etc/smgl" &&

config_query DOCUMENTATION \
             "Install documentation (man pages, requires man be installed)?" \
             y
