#
# path to the BackFire Scripts and configuration database ...
set ::SRC_PATH /usr/home/rob/SysAdmin/Article/src
set ::DATABASE [ file join $::SRC_PATH Backup.dbms ]

#
# Programs used by BackFire to perform backup and burn ...
set ::lst_progs [ list tar nmblookup smbtar mount umount ifconfig gzip \
	gunzip growisofs mkisofs dvd+rw-format cdcontrol openssl ]

#
# DVD and network devices
set ::lst_devs [ list dvd_burner network ]

#
# source and destination dirs for the BackFire script ..
set ::lst_dirs [ list source_path archive_path ]
set ::lst_ret [ list retention ]

#
# The BackFire configuration database schema ...
set ::dbms_Schema "
  create table resource (
	name	varchar(10) primary key not null,
	value	varchar(100)
  ) ;
  create table target (
	id		integer primary key not null ,
	name		varchar(40),
	type		varchar(40),
	host		varchar(40),
	share		varchar(40),
	path		varchar(40),
	user		varchar(40),
	passwd		varchar(40)
  ) ; "
