Open main menu

CDOT Wiki β

Changes

Bcfg2 Configuration

822 bytes added, 17:34, 17 February 2012
Server Side
<pre>
<Client profile='GROUP NAME' pingable='Y' pingtime='0' name='FULLY QUALIFIED DOMAIN NAME' />
</pre>
 
 
The group name ultimately helps determine how the client is configured, as much of
 
==Bundles==
Bundles are a means of defining files to be pushed out to clients. Bundles are assigned in groups.xml file using the following entry placed within the group tags:
<pre>
<bundle name="BUNDLE NAME" />
</pre>
 
 
An additonal value, "path", may be specified to insert the file in a specific location. Bundles are defined in /var/lib/bcfg2/Bundler as XML files, the contents of which are the name of the file and where it located on the server. For example: if there is a bundle used named "hosts", there would need to be a file present in /var/lib/bcfg2/Bundler called "hosts.xml". The contents of such a file are as follows:
 
<pre>
<Bundle name='BUNDLE NAME' version='2.0'>
<Path name='/PATH/TO/FILE' />
</Bundle>
</pre>
1
edit