summaryrefslogtreecommitdiffstats
path: root/man/man5/puppet.conf.5
blob: 1e4e70457aba5a3074c93f71ca4171431820bf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
.TH CONFIGURATION REFERENCE  "" "" ""
.SH NAME
Configuration Reference \- 
.\" Man page generated from reStructeredText.
.
.sp
\fBThis page is autogenerated; any changes will get overwritten\fP \fI(last generated on Wed Jul 14 14:33:09 \-0700 2010)\fP
.SS Contents
.INDENT 0.0
.IP \(bu 2
.
\fI\%Specifying Configuration Parameters\fP
.IP \(bu 2
.
\fI\%Signals\fP
.IP \(bu 2
.
\fI\%Configuration Parameter Reference\fP
.UNINDENT
.SH SPECIFYING CONFIGURATION PARAMETERS
.SS On The Command\-Line
.sp
Every Puppet executable (with the exception of \fBpuppetdoc\fP) accepts all of
the parameters below, but not all of the arguments make sense for every executable.
.sp
I have tried to be as thorough as possible in the descriptions of the
arguments, so it should be obvious whether an argument is appropriate or not.
.sp
These parameters can be supplied to the executables either as command\-line
options or in the configuration file.  For instance, the command\-line
invocation below would set the configuration directory to \fB/private/puppet\fP:
.sp
.nf
.ft C
$ puppet agent \-\-confdir=/private/puppet
.ft P
.fi
.sp
Note that boolean options are turned on and off with a slightly different
syntax on the command line:
.sp
.nf
.ft C
$ puppet agent \-\-storeconfigs

$ puppet agent \-\-no\-storeconfigs
.ft P
.fi
.sp
The invocations above will enable and disable, respectively, the storage of
the client configuration.
.SS Configuration Files
.sp
As mentioned above, the configuration parameters can also be stored in a
configuration file, located in the configuration directory.  As root, the
default configuration directory is \fB/etc/puppet\fP, and as a regular user, the
default configuration directory is \fB~user/.puppet\fP.  As of 0.23.0, all
executables look for \fBpuppet.conf\fP in their configuration directory
(although they previously looked for separate files).  For example,
\fBpuppet.conf\fP is located at \fB/etc/puppet/puppet.conf\fP as root and
\fB~user/.puppet/puppet.conf\fP as a regular user by default.
.sp
All executables will set any parameters set within the \fBmain\fP section,
and each executable will also use one of the \fBmaster\fP, \fBagent\fP, or
\fBuser\fP sections.
.SS File Format
.sp
The file follows INI\-style formatting.  Here is an example of a very simple
\fBpuppet.conf\fP file:
.sp
.nf
.ft C
[main]
  confdir = /private/puppet
  storeconfigs = true
.ft P
.fi
.sp
Note that boolean parameters must be explicitly specified as \fItrue\fP or
\fIfalse\fP as seen above.
.sp
If you need to change file parameters (e.g., reset the mode or owner), do
so within curly braces on the same line:
.sp
.nf
.ft C
[main]
  myfile = /tmp/whatever {owner = root, mode = 644}
.ft P
.fi
.sp
If you\(aqre starting out with a fresh configuration, you may wish to let
the executable generate a template configuration file for you by invoking
the executable in question with the \fI\-\-genconfig\fP command.  The executable
will print a template configuration to standard output, which can be
redirected to a file like so:
.sp
.nf
.ft C
$ puppet agent \-\-genconfig > /etc/puppet/puppet.conf
.ft P
.fi
.sp
Note that this invocation will replace the contents of any pre\-existing
\fIpuppet.conf\fP file, so make a backup of your present config if it contains
valuable information.
.sp
Like the \fI\-\-genconfig\fP argument, the executables also accept a \fI\-\-genmanifest\fP
argument, which will generate a manifest that can be used to manage all of
Puppet\(aqs directories and files and prints it to standard output.  This can
likewise be redirected to a file:
.sp
.nf
.ft C
$ puppet agent \-\-genmanifest > /etc/puppet/manifests/site.pp
.ft P
.fi
.sp
Puppet can also create user and group accounts for itself (one \fIpuppet\fP group
and one \fIpuppet\fP user) if it is invoked as \fIroot\fP with the \fI\-\-mkusers\fP argument:
.sp
.nf
.ft C
$ puppet agent \-\-mkusers
.ft P
.fi
.SH SIGNALS
.sp
The \fBpuppet agent\fP and \fBpuppet master\fP executables catch some signals for special
handling.  Both daemons catch (\fBSIGHUP\fP), which forces the server to restart
tself.  Predictably, interrupt and terminate (\fBSIGINT\fP and \fBSIGTERM\fP) will shut
down the server, whether it be an instance of \fBpuppet agent\fP or \fBpuppet master\fP.
.sp
Sending the \fBSIGUSR1\fP signal to an instance of \fBpuppet agent\fP will cause it to
immediately begin a new configuration transaction with the server.  This
signal has no effect on \fBpuppet master\fP.
.SH CONFIGURATION PARAMETER REFERENCE
.sp
Below is a list of all documented parameters.  Not all of them are valid with all
Puppet executables, but the executables will ignore any inappropriate values.
.SS async_storeconfigs
.sp
Whether to use a queueing system to provide asynchronous database integration. Requires that \fBpuppetqd\fP be running and that \(aqPSON\(aq support for ruby be installed.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS authconfig
.sp
The configuration file that defines the rights to the different namespaces and methods.  This can be used as a coarse\-grained authorization system for both \fBpuppet agent\fP and \fBpuppet master\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/namespaceauth.conf
.UNINDENT
.SS autoflush
.sp
Whether log files should always flush to disk.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS autosign
.sp
Whether to enable autosign.  Valid values are true (which autosigns any key request, and is a very bad idea), false (which never autosigns any key request), and the path to a file, which uses that configuration file to determine which keys to sign.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/autosign.conf
.UNINDENT
.SS bindaddress
.sp
The address a listening server should bind to.  Mongrel servers default to 127.0.0.1 and WEBrick defaults to 0.0.0.0.
.SS bucketdir
.sp
Where FileBucket files are stored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/bucket
.UNINDENT
.SS ca
.sp
Wether the master should function as a certificate authority.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT
.SS ca_days
.sp
How long a certificate should be valid. This parameter is deprecated, use ca_ttl instead
.SS ca_md
.sp
The type of hash used in certificates.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: md5
.UNINDENT
.SS ca_name
.sp
The name to use the Certificate Authority certificate.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $certname
.UNINDENT
.SS ca_port
.sp
The port to use for the certificate authority.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $masterport
.UNINDENT
.SS ca_server
.sp
The server to use for certificate authority requests.  It\(aqs a separate server because it cannot and does not need to horizontally scale.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $server
.UNINDENT
.SS ca_ttl
.sp
The default TTL for new certificates; valid values must be an integer, optionally followed by one of the units \(aqy\(aq (years of 365 days), \(aqd\(aq (days), \(aqh\(aq (hours), or \(aqs\(aq (seconds). The unit defaults to seconds. If this parameter is set, ca_days is ignored. Examples are \(aq3600\(aq (one hour) and \(aq1825d\(aq, which is the same as \(aq5y\(aq (5 years)
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 5y
.UNINDENT
.SS cacert
.sp
The CA certificate.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/ca_crt.pem
.UNINDENT
.SS cacrl
.sp
The certificate revocation list (CRL) for the CA. Will be used if present but otherwise ignored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/ca_crl.pem
.UNINDENT
.SS cadir
.sp
The root directory for the certificate authority.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/ca
.UNINDENT
.SS cakey
.sp
The CA private key.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/ca_key.pem
.UNINDENT
.SS capass
.sp
Where the CA stores the password for the private key
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $caprivatedir/ca.pass
.UNINDENT
.SS caprivatedir
.sp
Where the CA stores private certificate information.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/private
.UNINDENT
.SS capub
.sp
The CA public key.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/ca_pub.pem
.UNINDENT
.SS catalog_format
.sp
(Deprecated for \(aqpreferred_serialization_format\(aq) What format to use to dump the catalog.  Only supports \(aqmarshal\(aq and \(aqyaml\(aq.  Only matters on the client, since it asks the server for a specific format.
.SS catalog_terminus
.sp
Where to get node catalogs.  This is useful to change if, for instance, you\(aqd like to pre\-compile catalogs and store them in memcached or some other easily\-accessed store.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: compiler
.UNINDENT
.SS cert_inventory
.sp
A Complete listing of all certificates
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/inventory.txt
.UNINDENT
.SS certdir
.sp
The certificate directory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/certs
.UNINDENT
.SS certdnsnames
.sp
The DNS names on the Server certificate as a colon\-separated list. If it\(aqs anything other than an empty string, it will be used as an alias in the created certificate.  By default, only the server gets an alias set up, and only for \(aqpuppet\(aq.
.SS certificate_revocation
.sp
Whether certificate revocation should be supported by downloading a Certificate Revocation List (CRL) to all clients.  If enabled, CA chaining will almost definitely not work.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT
.SS certname
.sp
The name to use when handling certificates.  Defaults to the fully qualified domain name.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: pelin.lovedthanlost.net
.UNINDENT
.SS classfile
.sp
The file in which puppet agent stores a list of the classes associated with the retrieved configuration.  Can be loaded in the separate \fBpuppet\fP executable using the \fB\-\-loadclasses\fP option.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/classes.txt
.UNINDENT
.SS client_datadir
.sp
The directory in which serialized data is stored on the client.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/client_data
.UNINDENT
.SS clientbucketdir
.sp
Where FileBucket files are stored locally.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/clientbucket
.UNINDENT
.SS clientyamldir
.sp
The directory in which client\-side YAML data is stored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/client_yaml
.UNINDENT
.SS code
.sp
Code to parse directly.  This is essentially only used by \fBpuppet\fP, and should only be set if you\(aqre writing your own Puppet executable
.SS color
.sp
Whether to use colors when logging to the console. Valid values are \fBansi\fP (equivalent to \fBtrue\fP), \fBhtml\fP (mostly used during testing with TextMate), and \fBfalse\fP, which produces no color.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: ansi
.UNINDENT
.SS confdir
.sp
The main Puppet configuration directory.  The default for this parameter is calculated based on the user.  If the process is running as root or the user that \fBpuppet master\fP is supposed to run as, it defaults to a system directory, but if it\(aqs running as any other user, it defaults to being in \fB~\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: /etc/puppet
.UNINDENT
.SS config
.sp
The configuration file for doc.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/puppet.conf
.UNINDENT
.SS config_version
.sp
How to determine the configuration version.  By default, it will be the time that the configuration is parsed, but you can provide a shell script to override how the version is determined.  The output of this script will be added to every log message in the reports, allowing you to correlate changes on your hosts to the source version on the server.
.SS configprint
.sp
Print the value of a specific configuration parameter.  If a parameter is provided for this, then the value is printed and puppet exits.  Comma\-separate multiple values.  For a list of all values, specify \(aqall\(aq.  This feature is only available in Puppet versions higher than 0.18.4.
.SS configtimeout
.sp
How long the client should wait for the configuration to be retrieved before considering it a failure.  This can help reduce flapping if too many clients contact the server at one time.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 120
.UNINDENT
.SS couchdb_url
.sp
The url where the puppet couchdb database will be created
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: \fI\%http://127.0.0.1:5984/puppet\fP
.UNINDENT
.SS csrdir
.sp
Where the CA stores certificate requests
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/requests
.UNINDENT
.SS daemonize
.sp
Send the process into the background.  This is the default.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT
.SS dbadapter
.sp
The type of database to use.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: sqlite3
.UNINDENT
.SS dbconnections
.sp
The number of database connections. Only used when networked databases are used.  Will be ignored if the value is an empty string or is less than 1.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 0
.UNINDENT
.SS dblocation
.sp
The database cache for client configurations.  Used for querying within the language.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/clientconfigs.sqlite3
.UNINDENT
.SS dbmigrate
.sp
Whether to automatically migrate the database.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS dbname
.sp
The name of the database to use.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS dbpassword
.sp
The database password for caching. Only used when networked databases are used.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS dbport
.sp
The database password for caching. Only used when networked databases are used.
.SS dbserver
.sp
The database server for caching. Only used when networked databases are used.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: localhost
.UNINDENT
.SS dbsocket
.sp
The database socket location. Only used when networked databases are used.  Will be ignored if the value is an empty string.
.SS dbuser
.sp
The database user for caching. Only used when networked databases are used.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS diff
.sp
Which diff command to use when printing differences between files.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: diff
.UNINDENT
.SS diff_args
.sp
Which arguments to pass to the diff command when printing differences between files.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: \-u
.UNINDENT
.SS downcasefacts
.sp
Whether facts should be made all lowercase when sent to the server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS dynamicfacts
.sp
Facts that are dynamic; these facts will be ignored when deciding whether changed facts should result in a recompile.  Multiple facts should be comma\-separated.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: memorysize,memoryfree,swapsize,swapfree
.UNINDENT
.SS environment
.sp
The environment Puppet is running in.  For clients (e.g., \fBpuppet agent\fP) this determines the environment itself, which is used to find modules and much more.  For servers (i.e., \fBpuppet master\fP) this provides the default environment for nodes we know nothing about.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: production
.UNINDENT
.SS evaltrace
.sp
Whether each resource should log when it is being evaluated.  This allows you to interactively see exactly what is being done.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS external_nodes
.sp
An external command that can produce node information.  The output must be a YAML dump of a hash, and that hash must have one or both of \fBclasses\fP and \fBparameters\fP, where \fBclasses\fP is an array and \fBparameters\fP is a hash.  For unknown nodes, the commands should exit with a non\-zero exit code. This command makes it straightforward to store your node mapping information in other data sources like databases.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: none
.UNINDENT
.SS factdest
.sp
Where Puppet should store facts that it pulls down from the central server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/facts/
.UNINDENT
.SS factpath
.sp
Where Puppet should look for facts.  Multiple directories should be colon\-separated, like normal PATH variables.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/lib/facter/${\fI\%File::PATH_SEPARATOR\fP}$vardir/facts
.UNINDENT
.SS facts_terminus
.sp
Where to get node facts.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: facter
.UNINDENT
.SS factsignore
.sp
What files to ignore when pulling down facts.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: .svn CVS
.UNINDENT
.SS factsource
.sp
From where to retrieve facts.  The standard Puppet \fBfile\fP type is used for retrieval, so anything that is a valid file source can be used here.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet://$server/facts/
.UNINDENT
.SS factsync
.sp
Whether facts should be synced with the central server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS fileserverconfig
.sp
Where the fileserver configuration is stored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/fileserver.conf
.UNINDENT
.SS filetimeout
.sp
The minimum time to wait (in seconds) between checking for updates in configuration files.  This timeout determines how quickly Puppet checks whether a file (such as manifests or templates) has changed on disk.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 15
.UNINDENT
.SS freeze_main
.sp
Freezes the \(aqmain\(aq class, disallowing any code to be added to it.  This essentially means that you can\(aqt have any code outside of a node, class, or definition other than in the site manifest.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS genconfig
.sp
Whether to just print a configuration to stdout and exit.  Only makes sense when used interactively.  Takes into account arguments specified on the CLI.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS genmanifest
.sp
Whether to just print a manifest to stdout and exit.  Only makes sense when used interactively.  Takes into account arguments specified on the CLI.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS graph
.sp
Whether to create dot graph files for the different configuration graphs.  These dot files can be interpreted by tools like OmniGraffle or dot (which is part of ImageMagick).
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS graphdir
.sp
Where to store dot\-outputted graphs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/graphs
.UNINDENT
.SS group
.sp
The group puppet master should run as.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS hostcert
.sp
Where individual hosts store and look for their certificates.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $certdir/$certname.pem
.UNINDENT
.SS hostcrl
.sp
Where the host\(aqs certificate revocation list can be found. This is distinct from the certificate authority\(aqs CRL.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/crl.pem
.UNINDENT
.SS hostcsr
.sp
Where individual hosts store and look for their certificate requests.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/csr_$certname.pem
.UNINDENT
.SS hostprivkey
.sp
Where individual hosts store and look for their private key.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $privatekeydir/$certname.pem
.UNINDENT
.SS hostpubkey
.sp
Where individual hosts store and look for their public key.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $publickeydir/$certname.pem
.UNINDENT
.SS http_compression
.sp
Allow http compression in REST communication with the master. This setting might improve performance for agent \-> master communications over slow WANs. Your puppetmaster needs to support compression (usually by activating some settings in a reverse\-proxy in front of the puppetmaster, which rules out webrick). It is harmless to activate this settings if your master doesn\(aqt support compression, but if it supports it, this setting might reduce performance on high\-speed LANs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS http_proxy_host
.sp
The HTTP proxy host to use for outgoing connections.  Note: You may need to use a FQDN for the server hostname when using a proxy.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: none
.UNINDENT
.SS http_proxy_port
.sp
The HTTP proxy port to use for outgoing connections
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 3128
.UNINDENT
.SS httplog
.sp
Where the puppet agent web server logs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $logdir/http.log
.UNINDENT
.SS ignorecache
.sp
Ignore cache and always recompile the configuration.  This is useful for testing new configurations, where the local cache may in fact be stale even if the timestamps are up to date \- if the facts change or if the server changes.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS ignoreimport
.sp
A parameter that can be used in commit hooks, since it enables you to parse\-check a single file rather than requiring that all files exist.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS ignoreschedules
.sp
Boolean; whether puppet agent should ignore schedules.  This is useful for initial puppet agent runs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS keylength
.sp
The bit length of keys.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 1024
.UNINDENT
.SS ldapattrs
.sp
The LDAP attributes to include when querying LDAP for nodes.  All returned attributes are set as variables in the top\-level scope. Multiple values should be comma\-separated.  The value \(aqall\(aq returns all attributes.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: all
.UNINDENT
.SS ldapbase
.sp
The search base for LDAP searches.  It\(aqs impossible to provide a meaningful default here, although the LDAP libraries might have one already set.  Generally, it should be the \(aqou=Hosts\(aq branch under your main directory.
.SS ldapclassattrs
.sp
The LDAP attributes to use to define Puppet classes.  Values should be comma\-separated.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppetclass
.UNINDENT
.SS ldapnodes
.sp
Whether to search for node configurations in LDAP.  See \fI\%http://projects.puppetlabs.com/projects/puppet/wiki/LDAP_Nodes\fP for more information.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS ldapparentattr
.sp
The attribute to use to define the parent node.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: parentnode
.UNINDENT
.SS ldappassword
.sp
The password to use to connect to LDAP.
.SS ldapport
.sp
The LDAP port.  Only used if \fBldapnodes\fP is enabled.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 389
.UNINDENT
.SS ldapserver
.sp
The LDAP server.  Only used if \fBldapnodes\fP is enabled.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: ldap
.UNINDENT
.SS ldapssl
.sp
Whether SSL should be used when searching for nodes. Defaults to false because SSL usually requires certificates to be set up on the client side.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS ldapstackedattrs
.sp
The LDAP attributes that should be stacked to arrays by adding the values in all hierarchy elements of the tree.  Values should be comma\-separated.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppetvar
.UNINDENT
.SS ldapstring
.sp
The search string used to find an LDAP node.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: (&(objectclass=puppetClient)(cn=%s))
.UNINDENT
.SS ldaptls
.sp
Whether TLS should be used when searching for nodes. Defaults to false because TLS usually requires certificates to be set up on the client side.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS ldapuser
.sp
The user to use to connect to LDAP.  Must be specified as a full DN.
.SS lexical
.sp
Whether to use lexical scoping (vs. dynamic).
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS libdir
.sp
An extra search path for Puppet.  This is only useful for those files that Puppet will load on demand, and is only guaranteed to work for those cases.  In fact, the autoload mechanism is responsible for making sure this directory is in Ruby\(aqs search path
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/lib
.UNINDENT
.SS listen
.sp
Whether puppet agent should listen for connections.  If this is true, then by default only the \fBrunner\fP server is started, which allows remote authorized and authenticated nodes to connect and trigger \fBpuppet agent\fP runs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS localcacert
.sp
Where each client stores the CA certificate.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $certdir/ca.pem
.UNINDENT
.SS localconfig
.sp
Where puppet agent caches the local configuration.  An extension indicating the cache format is added automatically.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/localconfig
.UNINDENT
.SS logdir
.sp
The Puppet log directory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/log
.UNINDENT
.SS manage_internal_file_permissions
.sp
Whether Puppet should manage the owner, group, and mode of files it uses internally
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT
.SS manifest
.sp
The entry\-point manifest for puppet master.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $manifestdir/site.pp
.UNINDENT
.SS manifestdir
.sp
Where puppet master looks for its manifests.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/manifests
.UNINDENT
.SS masterhttplog
.sp
Where the puppet master web server logs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $logdir/masterhttp.log
.UNINDENT
.SS masterlog
.sp
Where puppet master logs.  This is generally not used, since syslog is the default log destination.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $logdir/puppetmaster.log
.UNINDENT
.SS masterport
.sp
Which port puppet master listens on.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 8140
.UNINDENT
.SS maximum_uid
.sp
The maximum allowed UID.  Some platforms use negative UIDs but then ship with tools that do not know how to handle signed ints, so the UIDs show up as huge numbers that can then not be fed back into the system.  This is a hackish way to fail in a slightly more useful way when that happens.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 4294967290
.UNINDENT
.SS mkusers
.sp
Whether to create the necessary user and group that puppet agent will run as.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS mode
.sp
The effective \(aqrun mode\(aq of the application: master, agent, or user.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: master
.UNINDENT
.SS modulepath
.sp
The search path for modules as a colon\-separated list of directories.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/modules:/usr/share/puppet/modules
.UNINDENT
.SS name
.sp
The name of the application, if we are running as one.  The default is essentially $0 without the path or \fB.rb\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: doc
.UNINDENT
.SS node_name
.sp
How the puppetmaster determines the client\(aqs identity and sets the \(aqhostname\(aq, \(aqfqdn\(aq and \(aqdomain\(aq facts for use in the manifest, in particular for determining which \(aqnode\(aq statement applies to the client. Possible values are \(aqcert\(aq (use the subject\(aqs CN in the client\(aqs certificate) and \(aqfacter\(aq (use the hostname that the client reported in its facts)
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: cert
.UNINDENT
.SS node_terminus
.sp
Where to find information about nodes.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: plain
.UNINDENT
.SS noop
.sp
Whether puppet agent should be run in noop mode.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS onetime
.sp
Run the configuration once, rather than as a long\-running daemon. This is useful for interactively running puppetd.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS parseonly
.sp
Just check the syntax of the manifests.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS passfile
.sp
Where puppet agent stores the password for its private key. Generally unused.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $privatedir/password
.UNINDENT
.SS path
.sp
The shell search path.  Defaults to whatever is inherited from the parent process.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: none
.UNINDENT
.SS pidfile
.sp
The pid file
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $rundir/$name.pid
.UNINDENT
.SS plugindest
.sp
Where Puppet should store plugins that it pulls down from the central server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $libdir
.UNINDENT
.SS pluginsignore
.sp
What files to ignore when pulling down plugins.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: .svn CVS .git
.UNINDENT
.SS pluginsource
.sp
From where to retrieve plugins.  The standard Puppet \fBfile\fP type is used for retrieval, so anything that is a valid file source can be used here.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet://$server/plugins
.UNINDENT
.SS pluginsync
.sp
Whether plugins should be synced with the central server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS postrun_command
.sp
A command to run after every agent run.  If this command returns a non\-zero return code, the entire Puppet run will be considered to have failed, even though it might have performed work during the normal run.
.SS preferred_serialization_format
.sp
The preferred means of serializing ruby instances for passing over the wire.  This won\(aqt guarantee that all instances will be serialized using this method, since not all classes can be guaranteed to support this format, but it will be used for all classes that support it.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: pson
.UNINDENT
.SS prerun_command
.sp
A command to run before every agent run.  If this command returns a non\-zero return code, the entire Puppet run will fail.
.SS privatedir
.sp
Where the client stores private certificate information.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/private
.UNINDENT
.SS privatekeydir
.sp
The private key directory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/private_keys
.UNINDENT
.SS publickeydir
.sp
The public key directory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/public_keys
.UNINDENT
.SS puppetdlockfile
.sp
A lock file to temporarily stop puppet agent from doing anything.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/puppetdlock
.UNINDENT
.SS puppetdlog
.sp
The log file for puppet agent.  This is generally not used.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $logdir/puppetd.log
.UNINDENT
.SS puppetport
.sp
Which port puppet agent listens on.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 8139
.UNINDENT
.SS queue_source
.sp
Which type of queue to use for asynchronous processing.  If your stomp server requires authentication, you can include it in the URI as long as your stomp client library is at least 1.1.1
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: stomp://localhost:61613/
.UNINDENT
.SS queue_type
.sp
Which type of queue to use for asynchronous processing.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: stomp
.UNINDENT
.SS rails_loglevel
.sp
The log level for Rails connections.  The value must be a valid log level within Rails.  Production environments normally use \fBinfo\fP and other environments normally use \fBdebug\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: info
.UNINDENT
.SS railslog
.sp
Where Rails\-specific logs are sent
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $logdir/rails.log
.UNINDENT
.SS report
.sp
Whether to send reports after every transaction.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS report_port
.sp
The port to communicate with the report_server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $masterport
.UNINDENT
.SS report_server
.sp
The server to which to send transaction reports.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $server
.UNINDENT
.SS reportdir
.sp
The directory in which to store reports received from the client.  Each client gets a separate subdirectory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/reports
.UNINDENT
.SS reportfrom
.sp
The \(aqfrom\(aq email address for the reports.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: \fI\%report@pelin.lovedthanlost.net\fP
.UNINDENT
.SS reports
.sp
The list of reports to generate.  All reports are looked for in puppet/reports/name.rb, and multiple report names should be comma\-separated (whitespace is okay).
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: store
.UNINDENT
.SS reportserver
.sp
(Deprecated for \(aqreport_server\(aq) The server to which to send transaction reports.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $server
.UNINDENT
.SS reporturl
.sp
The URL used by the http reports processor to send reports
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: \fI\%http://localhost:3000/reports\fP
.UNINDENT
.SS req_bits
.sp
The bit length of the certificates.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 2048
.UNINDENT
.SS requestdir
.sp
Where host certificate requests are stored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $ssldir/certificate_requests
.UNINDENT
.SS rest_authconfig
.sp
The configuration file that defines the rights to the different rest indirections.  This can be used as a fine\-grained authorization system for \fBpuppet master\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/auth.conf
.UNINDENT
.SS rrddir
.sp
The directory where RRD database files are stored. Directories for each reporting host will be created under this directory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/rrd
.UNINDENT
.SS rrdinterval
.sp
How often RRD should expect data. This should match how often the hosts report back to the server.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $runinterval
.UNINDENT
.SS rundir
.sp
Where Puppet PID files are kept.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/run
.UNINDENT
.SS runinterval
.sp
How often puppet agent applies the client configuration; in seconds.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: 1800
.UNINDENT
.SS sendmail
.sp
Where to find the sendmail binary with which to send email.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: /usr/sbin/sendmail
.UNINDENT
.SS serial
.sp
Where the serial number for certificates is stored.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/serial
.UNINDENT
.SS server
.sp
The server to which server puppet agent should connect
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS server_datadir
.sp
The directory in which serialized data is stored, usually in a subdirectory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/server_data
.UNINDENT
.SS servertype
.sp
The type of server to use.  Currently supported options are webrick and mongrel.  If you use mongrel, you will need a proxy in front of the process or processes, since Mongrel cannot speak SSL.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: webrick
.UNINDENT
.SS show_diff
.sp
Whether to print a contextual diff when files are being replaced.  The diff is printed on stdout, so this option is meaningless unless you are running Puppet interactively. This feature currently requires the \fBdiff/lcs\fP Ruby library.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS signeddir
.sp
Where the CA stores signed certificates.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $cadir/signed
.UNINDENT
.SS smtpserver
.sp
The server through which to send email reports.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: none
.UNINDENT
.SS splay
.sp
Whether to sleep for a pseudo\-random (but consistent) amount of time before a run.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS splaylimit
.sp
The maximum time to delay before runs.  Defaults to being the same as the run interval.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $runinterval
.UNINDENT
.SS ssl_client_header
.sp
The header containing an authenticated client\(aqs SSL DN.  Only used with Mongrel.  This header must be set by the proxy to the authenticated client\(aqs SSL DN (e.g., \fB/CN=puppet.puppetlabs.com\fP). See \fI\%http://projects.puppetlabs.com/projects/puppet/wiki/Using_Mongrel\fP for more information.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: HTTP_X_CLIENT_DN
.UNINDENT
.SS ssl_client_verify_header
.sp
The header containing the status message of the client verification. Only used with Mongrel.  This header must be set by the proxy to \(aqSUCCESS\(aq if the client successfully authenticated, and anything else otherwise. See \fI\%http://projects.puppetlabs.com/projects/puppet/wiki/Using_Mongrel\fP for more information.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: HTTP_X_CLIENT_VERIFY
.UNINDENT
.SS ssldir
.sp
Where SSL certificates are kept.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/ssl
.UNINDENT
.SS statedir
.sp
The directory where Puppet state is stored.  Generally, this directory can be removed without causing harm (although it might result in spurious service restarts).
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/state
.UNINDENT
.SS statefile
.sp
Where puppet agent and puppet master store state associated with the running configuration.  In the case of puppet master, this file reflects the state discovered through interacting with clients.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $statedir/state.yaml
.UNINDENT
.SS storeconfigs
.sp
Whether to store each client\(aqs configuration.  This requires ActiveRecord from Ruby on Rails.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS strict_hostname_checking
.sp
Whether to only search for the complete hostname as it is in the certificate when searching for node information in the catalogs.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS summarize
.sp
Whether to print a transaction summary.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS syslogfacility
.sp
What syslog facility to use when logging to syslog.  Syslog has a fixed list of valid facilities, and you must choose one of those; you cannot just make one up.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: daemon
.UNINDENT
.SS tagmap
.sp
The mapping between reporting tags and email addresses.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $confdir/tagmail.conf
.UNINDENT
.SS tags
.sp
Tags to use to find resources.  If this is set, then only resources tagged with the specified tags will be applied. Values must be comma\-separated.
.SS templatedir
.sp
Where Puppet looks for template files.  Can be a list of colon\-seperated directories.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/templates
.UNINDENT
.SS thin_storeconfigs
.sp
Boolean; wether storeconfigs store in the database only the facts and exported resources. If true, then storeconfigs performance will be higher and still allow exported/collected resources, but other usage external to Puppet might not work
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS trace
.sp
Whether to print stack traces on some errors
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS use_cached_catalog
.sp
Whether to only use the cached catalog rather than compiling a new catalog on every run.  Puppet can be run with this enabled by default and then selectively disabled when a recompile is desired.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: false
.UNINDENT
.SS usecacheonfailure
.sp
Whether to use the cached configuration when the remote configuration will not compile.  This option is useful for testing new configurations, where you want to fix the broken configuration rather than reverting to a known\-good one.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT
.SS user
.sp
The user puppet master should run as.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: puppet
.UNINDENT
.SS vardir
.sp
Where Puppet stores dynamic and growing data.  The default for this parameter is calculated specially, like \fI\%confdir\fP.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: /var/lib/puppet
.UNINDENT
.SS yamldir
.sp
The directory in which YAML data is stored, usually in a subdirectory.
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: $vardir/yaml
.UNINDENT
.SS zlib
.sp
Boolean; whether to use the zlib library
.INDENT 0.0
.IP \(bu 2
.
\fBDefault\fP: true
.UNINDENT

.sp
.ce
----

.ce 0
.sp
.sp
\fIThis page autogenerated on Wed Jul 14 14:33:09 \-0700 2010\fP
.\" Generated by docutils manpage writer.
.\" 
.