diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-21 18:59:46 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-21 18:59:46 +0000 |
commit | 2e17e4a12a04de202aaa4cd7290d8288d938b2ae (patch) | |
tree | f817dc480e5f76d28bd8121f80c505ce22d50420 /documentation | |
parent | 9bd69c4a7a1f19e4e1ab8d2dea37fbcda85522d1 (diff) | |
download | puppet-2e17e4a12a04de202aaa4cd7290d8288d938b2ae.tar.gz puppet-2e17e4a12a04de202aaa4cd7290d8288d938b2ae.tar.xz puppet-2e17e4a12a04de202aaa4cd7290d8288d938b2ae.zip |
Doc updates
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1648 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/documentation/security.page | 7 | ||||
-rw-r--r-- | documentation/documentation/structures.page | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/documentation/documentation/security.page b/documentation/documentation/security.page index 68adeaf07..389bd8243 100644 --- a/documentation/documentation/security.page +++ b/documentation/documentation/security.page @@ -55,11 +55,14 @@ the request. Adding the ``--all`` flag will sign all outstanding requests. A list of all certificates ever issued by Puppet's CA can be found in the file ``$cadir/inventory.txt``. +All certificate files for a given host can be removed (for rebuilding hosts, +for instance) with ``puppetca --clean <hostname>``. + Certificates, once issued, can be revoked with ``puppetca --revoke -<hostname|serial>''. The server consults the certificate revocation list +<hostname|serial>``. The server consults the certificate revocation list (CRL) every time a client tries to connect to the server; for revocations to take effect, the server must be restarted after the certificate -revocation with ``puppetca''. +revocation with ``puppetca``. # Access and Authorization diff --git a/documentation/documentation/structures.page b/documentation/documentation/structures.page index 2d82816e3..8b3ba8cbd 100644 --- a/documentation/documentation/structures.page +++ b/documentation/documentation/structures.page @@ -7,7 +7,7 @@ This is a brief overview of the language structures available for making site configurations in Puppet. For futher documentation, visit the [Puppet homepage](/projects/puppet/). -# Types +<h1><a name="types">Types</a></h1> The basic unit of configuration in Puppet are ``types``. Types model objects on the computer being managed, and each builtin type has attributes that @@ -25,7 +25,7 @@ work for defined types. See the [Type Reference](typedocs.html) for the documentation for the Puppet Library's primitive types. -# Assignment +<h1><a name="assignment">Assignment</a></h1> $variable = value @@ -283,7 +283,7 @@ even though there is no code associated with them. The syntax is just like tag $operatingsystem -# Nodes +<h1><a name="nodes">Nodes</a></h1> node <hostname> { ... } |