| 10 | |
| 11 | === bcfg2.conf changes === |
| 12 | |
| 13 | The generators/structures lines of bcfg2.conf have been merged into a |
| 14 | single plugins line. Bcfg2-admin init has been updated to generate a |
| 15 | new-style bcfg2.conf. A minimal configuration may look something like |
| 16 | this: |
| 17 | {{{ |
| 18 | [server] |
| 19 | repository = /var/lib/bcfg2 |
| 20 | plugins = Base,Bundler,Cfg,Metadata,Pkgmgr,Rules,SSHbase |
| 21 | |
| 22 | [communication] |
| 23 | protocol = xmlrpc/ssl |
| 24 | password = foobat |
| 25 | key = /etc/bcfg2.key |
| 26 | # fingerprint of server (from bcfg2-admin fingerprint) |
| 27 | #fingerprint = [server fingerprint] |
| 28 | |
| 29 | [components] |
| 30 | bcfg2 = https://localhost:6789 |
| 31 | }}} |
| 32 | |
| 33 | svn = yes is also deprecated. You can get the same functionality by |
| 34 | adding Svn to your plugins line (see [wiki:Plugins/Svn Svn]). |