1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
* voice_paths.h
*
* This file contains the position of the configuration file and of
* the logfiles. Change this for your installation.
*
* $Id: paths.h,v 1.4 1998/09/09 21:06:36 gert Exp $
*
*/
/*
* Filename of the voice configuration file.
*/
#define VOICE_CONFIG_FILE "voice.conf"
/*
* Filename of the logfile for vgetty. The "%s" will be replaced by
* the device name.
*/
#define VGETTY_LOG_PATH "/var/log/mgetty/vg_%s.log"
/*
* Filename of the logfile for vm.
*/
#define VM_LOG_PATH "/var/log/mgetty/vm.log"
|