# Copyright (C) 2012 by Debian Edu project, http://wiki.debian.org/DebianEdu
#       Mike Gabriel <mike.gabriel@das-netzwerkteam.de>

# Internet Kiosk is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Internet Kiosk is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.

# name of the interet kiosk platform you are providing (will be shown during boot / plymouth run)
IK_PRETTY_NAME="Internet Kiosk"

# base path for Internet Kiosk diskless machine files
IK_BASE="/opt/internet-kiosk"

# path to Internet Kiosk chroot
IK_CHROOT="$IK_BASE/chroot"

# path to the Internet Kiosk configuration
IK_CONFIG="$IK_BASE/etc"

# shell to use when maintaining the Internet Kiosk diskless terminal chroot
IK_SHELL="bash"

# Debian package mirror to use...
IK_DEBMIRROR_URL="http://ftp.debian.org/debian"

# Distro code name to use...
IK_DISTRO_CODENAME="wheezy"

# Retrieve extra packages from this URL
IK_EXTRA_DEBURL="deb http://packages.it-zukunft-schule.de/debian $IK_DISTRO_CODENAME main"

# Use a http/ftp proxy during debootstrap (leave empty if direct connections to http/ftp are allowed)
# IK_HTTP_PROXY="http://webcache.intern:3128"
# IK_HTTPS_PROXY="http://webcache.intern:3128"
# IK_FTP_PROXY="http://webcache.intern:3128"
IK_HTTP_PROXY=""
IK_HTTPS_PROXY=""
IK_FTP_PROXY=""

# module blacklist (used during Internet Kiosk chroot creation)
IK_MODULE_BLACKLIST="pcspkr"

# tftp boot environment (PXE/syslinux files delivered via tftpd)
IK_TFTP_BOOT="/srv/tftp"

echo
echo "Internet Kiosk Diskless Terminal Environment:"
echo "============================================="
echo "The Internet Kiosk Diskless Terminal Environment is using the following"
echo "settings:"
echo
echo "IK_PRETTY_NAME=$IK_PRETTY_NAME"
echo "IK_BASE=$IK_BASE"
echo "IK_CONFIG=$IK_CONFIG"
echo "IK_CHROOT=$IK_CHROOT"
echo "IK_SHELL=$IK_SHELL"
echo "IK_DEBMIRROR_URL=$IK_DEBMIRROR_URL"
echo "IK_DISTRO_CODENAME=$IK_DISTRO_CODENAME"
echo "IK_EXTRA_DEBURL=$IK_EXTRA_DEBURL"
echo "IK_HTTP_PROXY=$IK_HTTP_PROXY"
echo "IK_HTTPS_PROXY=$IK_HTTPS_PROXY"
echo "IK_FTP_PROXY=$IK_FTP_PROXY"
echo "IK_MODULE_BLACKLIST=$IK_MODULE_BLACKLIST"
echo "IK_TFTP_BOOT=$IK_TFTP_BOOT"
echo
echo "Edit /etc/internet-kiosk/ik_settings to change this."
echo
