diff options
author | Fabian Affolter <fabian@bernewireless.net> | 2010-06-08 16:32:39 +0000 |
---|---|---|
committer | Sol Jerome <solj@ices.utexas.edu> | 2010-06-09 08:09:54 -0500 |
commit | 14dc50e942076807092870a2910a05dcb0c25aed (patch) | |
tree | 5ee773f0a981b8088dc2cca5105b2a066ef604ff /examples/bcfg2.conf | |
parent | 0d59c298c72514a9b1194455b79eb48458b5a434 (diff) | |
download | bcfg2-14dc50e942076807092870a2910a05dcb0c25aed.tar.gz bcfg2-14dc50e942076807092870a2910a05dcb0c25aed.tar.bz2 bcfg2-14dc50e942076807092870a2910a05dcb0c25aed.zip |
Updated sample configuration file
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5907 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'examples/bcfg2.conf')
-rw-r--r-- | examples/bcfg2.conf | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/examples/bcfg2.conf b/examples/bcfg2.conf index cac424576..5963406f7 100644 --- a/examples/bcfg2.conf +++ b/examples/bcfg2.conf @@ -1,8 +1,30 @@ +[server] +repository = /var/lib/bcfg2 +plugins = Base,Bundler,Cfg,Metadata,Pkgmgr,Rules,SSHbase + +[statistics] +sendmailpath = /usr/lib/sendmail +database_engine = sqlite3 +# 'postgresql', 'mysql', 'mysql_old', 'sqlite3' or 'ado_mssql'. +database_name = +# Or path to database file if using sqlite3. +#<repository>/etc/brpt.sqlite is default path if left empty +database_user = +# Not used with sqlite3. +database_password = +# Not used with sqlite3. +database_host = +# Not used with sqlite3. +database_port = +# Set to empty string for default. Not used with sqlite3. +web_debug = True + [communication] protocol = xmlrpc/ssl -password = foobat -# certificate = /etc/bcfg2.key -# key = /etc/bcfg2.key +password = test1234 +certificate = /etc/bcfg2.crt +key = /etc/bcfg2.key +ca = /etc/bcfg2.crt [components] -bcfg2 = https://localhost:6789 +bcfg2 = https://localhost.localdomain:6789 |