#! /bin/bash
#
#

abort () { printf >&2 "%s\n" "$@"; exit 1; }

# -- open up the file in our configuration directory
#
. "/etc/atelerix/atelerix/main.conf" \
  || abort "Could not source \"/etc/atelerix/atelerix/main.conf\""

# -- print out a note to the world
#
printf "%s\n" "Hello ${OBJECT_OF_GREETING:-world} from atelerix-0.2.14."

printf "%-50s %s\n" \
  "Config files would be in:"            "/etc/atelerix/atelerix" \
  "The cache directory would be:"        "/var/spool/atelerix" \
  "The dedicated tmpdir would be:"       "/var/tmp/atelerix" \
  "The package share dir would be:"      "/usr/share/atelerix" \
  "All code used only by this package:"  "/usr/lib/atelerix"

# -- end of file
