# !!! DO NOT EDIT THIS FILE !!!
# only if you know what you are doing...

###
## shared config vars
###

# language
LANG_=en

# main path from terminalserver
PATH_="/etc/grml/terminalserver"

# config file produced from configuration program
CONF_FILE_="$PATH_/terminalserver.conf"

# user editable config
CONFIG_="$PATH_/config"

# 'data dir' from terminalserver
USR_SHARE_="/usr/share/grml-terminalserver"

# sample config file for making the netboot package
NETBOOT_PACKAGE_CONF_FILE_="$USR_SHARE_/terminalserver_netboot_package.conf"

# defaults for vars in terminalserver.conf
DEFAULT_CONFIG_="$USR_SHARE_/default_config"

# title for dialog
BACK_TITLE_="GRML TERMINAL-SERVER CONFIGURATION"

# program to use for user questions (x)dialog
DIALOG_="dialog"


###
## grml-terminalserver
###

# program to create $CONF_FILE_
CONFIG_PROG_="/usr/sbin/grml-terminalserver-config"

# vars for dhcpd
if [ -x /usr/sbin/dhcpd3 ] ; then
  DHCPD_BIN_="/usr/sbin/dhcpd3"
else
  DHCPD_BIN_="/usr/sbin/dhcpd"
fi

DHCPD_CONFIG_FILE_="$PATH_/dhcpd.conf"
DHCPD_PID_="/var/run/dhcpd.pid"

# vars for tftpd
TFTPD_BIN_="/usr/sbin/atftpd"
TFTPD_DATA_DIR_="/var/lib/tftpboot"
TFTPD_PID_="/var/run/grml-tftpd.pid"


###
## grml-terminalserver-config
###

# the dir where the templates for the configuration files are stored
TEMPLATE_CONFIG_DIR_="$USR_SHARE_/templates"

# maximum initrd size
MAX_INITRD_SIZE_=16000

# path to uclibc
UCLIBC_PATH_="/usr/i386-uclibc-linux/lib"

# this is where the terminalserver-config creates the initrd
INITRD_="$PATH_/mini-root"

# only for this cards (kernel module names of drivers) drivers are copied into
# the initrd
CARDS_DETECTED_BY_DISCOVER="$PATH_/discover_netcards"

# as long as this pattern is in a config file, it will be overwritten every time
CONFIG_PATTERN_="__PLEASE_UPDATE_THIS_FILE__"
