diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2012-04-17 14:47:41 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2012-04-17 14:47:41 -0500 |
commit | 918382284bb0195ab01ff470c4e4a016bc8aad87 (patch) | |
tree | d84c6d1faf6279666b3e99208c1d1485e84fe562 /doc | |
parent | 67555319c4501ad0ce312244c2c983a7b592a582 (diff) | |
parent | 9d3a445882c99a7d5a7aa929dc00abe1b9b20d88 (diff) | |
download | bcfg2-918382284bb0195ab01ff470c4e4a016bc8aad87.tar.gz bcfg2-918382284bb0195ab01ff470c4e4a016bc8aad87.tar.bz2 bcfg2-918382284bb0195ab01ff470c4e4a016bc8aad87.zip |
Merge branch 'add-essential-pkgs'
Diffstat (limited to 'doc')
-rw-r--r-- | doc/server/plugins/generators/packages.txt | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/doc/server/plugins/generators/packages.txt b/doc/server/plugins/generators/packages.txt index 900162aaa..855a3c51c 100644 --- a/doc/server/plugins/generators/packages.txt +++ b/doc/server/plugins/generators/packages.txt @@ -205,14 +205,13 @@ something like this:: .. versionadded:: 1.1.0 - The default behavior of the Packages plugin is to not make - any assumptions about which packages you want to have added - automatically. For that reason, neither **Recommended** nor - **Suggested** packages are added as dependencies by default. You - will notice that the default behavior for apt is to add Recommended - packages as dependencies. You can configure the Packages plugin to - add recommended packages by adding the ``recommended`` attribute, - e.g.: + The default behavior of the Packages plugin is to not make any + assumptions about which packages you want to have added automatically + [#f1]_. For that reason, neither **Recommended** nor **Suggested** + packages are added as dependencies by default. You will notice + that the default behavior for apt is to add Recommended packages as + dependencies. You can configure the Packages plugin to add recommended + packages by adding the ``recommended`` attribute, e.g.: .. code-block:: xml @@ -221,6 +220,14 @@ something like this:: .. warning:: You must regenerate the Packages cache when adding or removing the recommended attribute. + .. [#f1] Bcfg2 will by default add **Essential** packages to the + client specification. You can disable this behavior by + setting the ``essential`` attribute to *false*: + + .. code-block:: xml + + <Source type="apt" essential="false" ...> + Yum sources can be similarly specified:: <Sources> |