## This is a sambel configuration file for the MediaTomb daemon script
## used on Fedora Core

## By default the configuration will be created in /etc/mediatomb

## Network interface on which the server will run, you need to edit this!
{
my $interfaces = ${'mediatomb'}{'interfaces'} || ${'InternalInterface'}{'bridgeInterface'} || ${'InternalInterface'}{'Name'} ; 
$OUT .= "MT_INTERFACE=\"$interfaces\"\n";
}

## User defined command line options that may be passed to the server
{
my $options = ${'mediatomb'}{'options'} || '' ;
$OUT .= "MT_OPTIONS=\"$options\"\n";
}

## MediaTomb will be started on port 50500
{
my $port = ${'mediatomb'}{'TCPPort'} || '50500' ;
$OUT .= "MT_PORT=\"$port\"\n";
}

## MediaTomb will run as mediatomb
MT_USER="mediatomb"
MT_GROUP="mediatomb"

## Location of the PID file
MT_PIDFILE="/var/run/mediatomb.pid"

## Location of the log file
MT_LOGFILE="/var/log/mediatomb"

## Location of the config file/database
MT_HOME="/etc"
MT_CFGDIR="mediatomb"

