# $Id: config,v 1.9 2000/09/19 03:26:08 dmetz Exp $
# $crtd:  by  cfmdb --initdb  (copy from /etc/cfm/config) $
# $cmnt:  Configuration params for a cfmdb.
#   Comments must begin in # in column one.
#   These are lines of perl code.
# $

#  Vars
#  Default sets: Unless a set tag was specified on the cmdline the cfm
#  cmd searches the rcsfile for the correct cfmdb version for that 
#  host using the host's set list taken from the hostsets file.
#  If this fails it searches for the default set tags in sequence. 
#  <rpm> will be replaced by the name of the rpm that owns the file.
@def_sets = ("<rpm>", "all", $ENV{CFMMYSETS});
#  Diff options used by rcsdiff: ignore whitespace, no diag output,
#  ignore the rcs Id.
@diffopts = ("-B", "-b", "-q", '-I^# $Id: ');
#  Cfm supported HFS os dir tree list: You should see 
#  doc/overview/assumptions.html before tweaking these.
#  /home doesn't belong in here; it should be mapped.
$os_dirs = '^(/|/bin|/sbin|/dev|/etc|/export|/lib|/opt|/root|/usr|/var)(/|$)';
#  Cfm supported arch & dataclass dirs. See doc/overview/assumptions.html.
#  If your server supports multiple architectures add to the $archs var.
#  You should evaluate each of your automounter maps for inclusion as 
#  a dataclass. If they contain supportable files add to the $dcs var.
$archs = '^(/Linux-2)(?:/|$)';
$dcs = '^(/noarch|/home|/lhome)(/|$)';
#  Default verbosity level. See cfm manpage.
$vb_lvl = 3;

