summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/server/plugins/generators/packages.txt19
1 files changed, 15 insertions, 4 deletions
diff --git a/doc/server/plugins/generators/packages.txt b/doc/server/plugins/generators/packages.txt
index 90cd19de4..a443eaa21 100644
--- a/doc/server/plugins/generators/packages.txt
+++ b/doc/server/plugins/generators/packages.txt
@@ -283,16 +283,27 @@ Limitations
Packages does not do traditional caching as other plugins do. Changes
to the Packages config file require a server restart for the time being.
-Package Verification
-====================
+Package Checking and Verification
+=================================
-In order to do disable per-package verification Pkgmgr style, you will
-need to use :ref:`BoundEntries <boundentries>` like below
+In order to disable per-package checking (version and verification), or just
+verification, you can use the ``pkg_checks`` or ``pkg_verify`` attributes
+like below
+
+.. code-block:: xml
+
+ <Package name='mem-agent' pkg_checks='false'/>
+ <Package name='mem-agent' pkg_verify='false'/>
+
+Disabling per-package verification can also be done Pkgmgr style,
+using :ref:`BoundEntries <boundentries>` like below
.. code-block:: xml
<BoundPackage name="mem-agent" priority="1" version="auto" type="yum" verify="false"/>
+
+
Generating Client APT/Yum Configurations
========================================