summaryrefslogtreecommitdiffstats
path: root/man/man8/puppet.conf.8
blob: 1bc1eb65ad81169dfa6ad10f678f4bb81cfd23dc (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
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
.TH Configuration Reference  "" "" ""
.SH NAME
Configuration Reference \- 

.\" Man page generated from reStructeredText.
This page is autogenerated; any changes will get overwritten 
.I (last generated on Mon May 05 09:33:01 +1000 2008)



.\" topic: Contents
.\" 
.\" Specifying Configuration Parameters
.\" 
.\" Signals
.\" 
.\" Configuration Parameter Reference

.SH Specifying Configuration Parameters

.SS On The Command\-Line
Every Puppet executable (with the exception of 
.\" visit_literal
puppetdoc
.\" depart_literal
) accepts all of
the parameters below, but not all of the arguments make sense for every executable.
Each parameter has a section listed with it in parentheses; often, that section
will map to an executable (e.g., 
.\" visit_literal
puppetd
.\" depart_literal
), in which case it probably only
makes sense for that one executable.  If 
.\" visit_literal
main
.\" depart_literal
 is listed as the section,
it is most likely an option that is valid for everyone.

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.

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 
.\" visit_literal
/private/puppet
.\" depart_literal
:


.nf
$ puppetd \-\-confdir=/private/puppet
.fi
Note that boolean options are turned on and off with a slightly different
syntax on the command line:


.nf
$ puppetd \-\-storeconfigs

$ puppetd \-\-no\-storeconfigs
.fi
The invocations above will enable and disable, respectively, the storage of
the client configuration.


.SS Configuration Files
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 
.\" visit_literal
/etc/puppet
.\" depart_literal
, and as a regular user, the
default configuration directory is 
.\" visit_literal
~user/.puppet
.\" depart_literal
.  As of 0.23.0, all
executables look for 
.\" visit_literal
puppet.conf
.\" depart_literal
 in their configuration directory
(although they previously looked for separate files).  For example,

.\" visit_literal
puppet.conf
.\" depart_literal
 is located at 
.\" visit_literal
/etc/puppet/puppet.conf
.\" depart_literal
 as root and

.\" visit_literal
~user/.puppet/puppet.conf
.\" depart_literal
 as a regular user by default.

All executables will set any parameters set within the 
.\" visit_literal
main
.\" depart_literal
 section,
while each executable will also look for a section named for the executable
and load those parameters.  For example, 
.\" visit_literal
puppetd
.\" depart_literal
 will look for a
section named 
.\" visit_literal
puppetd
.\" depart_literal
, and 
.\" visit_literal
puppetmasterd
.\" depart_literal
 looks for a section
named 
.\" visit_literal
puppetmasterd
.\" depart_literal
.  This allows you to use a single configuration file
to customize the settings for all of your executables.


.SS File Format
The file follows INI\-style formatting.  Here is an example of a very simple

.\" visit_literal
puppet.conf
.\" depart_literal
 file:


.nf
[main]
    confdir = /private/puppet
    storeconfigs = true
.fi
Note that boolean parameters must be explicitly specified as 
.I true
 or

.I false
 as seen above.

If you need to change file parameters (e.g., reset the mode or owner), do
so within curly braces on the same line:


.nf
[main]
    myfile = /tmp/whatever {owner = root, mode = 644}
.fi
If you\'re 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 
.I \-\-genconfig
 command.  The executable
will print a template configuration to standard output, which can be
redirected to a file like so:


.nf
$ puppetd \-\-genconfig > /etc/puppet/puppet.conf
.fi
Note that this invocation will replace the contents of any pre\-existing

.I puppet.conf
 file, so make a backup of your present config if it contains
valuable information.

All parameters will be under a single section heading matching the name of
the process used to generate the configuraiton (\'puppetd\', in this case).

Like the 
.I \-\-genconfig
 argument, the executables also accept a 
.I \-\-genmanifest

argument, which will generate a manifest that can be used to manage all of
Puppet\'s directories and files and prints it to standard output.  This can
likewise be redirected to a file:


.nf
$ puppetd \-\-genmanifest > /etc/puppet/manifests/site.pp
.fi
Puppet can also create user and group accounts for itself (one 
.I puppet
 group
and one 
.I puppet
 user) if it is invoked as 
.I root
 with the 
.I \-\-mkusers
 argument:


.nf
$ puppetd \-\-mkusers
.fi

.SH Signals
The 
.\" visit_literal
puppetd
.\" depart_literal
 and 
.\" visit_literal
puppetmasterd
.\" depart_literal
 executables catch some signals for special
handling.  Both daemons catch (
.\" visit_literal
SIGHUP
.\" depart_literal
), which forces the server to restart
tself.  Predictably, interrupt and terminate (
.\" visit_literal
SIGINT
.\" depart_literal
 and 
.\" visit_literal
SIGHUP
.\" depart_literal
) will shut
down the server, whether it be an instance of 
.\" visit_literal
puppetd
.\" depart_literal
 or 
.\" visit_literal
puppetmasterd
.\" depart_literal
.

Sending the 
.\" visit_literal
SIGUSR1
.\" depart_literal
 signal to an instance of 
.\" visit_literal
puppetd
.\" depart_literal
 will cause it to
immediately begin a new configuration transaction with the server.  This
signal has no effect on 
.\" visit_literal
puppetmasterd
.\" depart_literal
.


.SH Configuration Parameter Reference
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 authconfig
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 
.\" visit_literal
puppetd
.\" depart_literal
 and 
.\" visit_literal
puppetmasterd
.\" depart_literal
.


.TP 2
\(bu
Default: $confdir/namespaceauth.conf


.SS autoflush
Whether log files should always flush to disk.


.TP 2
\(bu
Default: false


.SS autosign
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.


.TP 2
\(bu
Default: $confdir/autosign.conf


.SS bindaddress
The address to bind to.  Mongrel servers default to 127.0.0.1 and WEBrick defaults to 0.0.0.0.


.SS bucketdir
Where FileBucket files are stored.


.TP 2
\(bu
Default: $vardir/bucket


.SS ca
Wether the master should function as a certificate authority.


.TP 2
\(bu
Default: true


.SS ca_days
How long a certificate should be valid.  This parameter is deprecated, use ca_ttl instead


.SS ca_md
The type of hash used in certificates.


.TP 2
\(bu
Default: md5


.SS ca_port
The port to use for the certificate authority.


.TP 2
\(bu
Default: $masterport


.SS ca_server
The server to use for certificate authority requests.  It\'s a separate server because it cannot and does not need to horizontally scale.


.TP 2
\(bu
Default: $server


.SS ca_ttl
The default TTL for new certificates; valid values  must be an integer, optionally followed by one of the units  \'y\' (years of 365 days), \'d\' (days), \'h\' (hours), or  \'s\' (seconds). The unit defaults to seconds. If this parameter is set, ca_days is ignored. Examples are \'3600\' (one hour)  and \'1825d\', which is the same as \'5y\' (5 years)


.TP 2
\(bu
Default: 5y


.SS cacert
The CA certificate.


.TP 2
\(bu
Default: $cadir/ca_crt.pem


.SS cacrl
The certificate revocation list (CRL) for the CA. Set this to \'false\' if you do not want to use a CRL.


.TP 2
\(bu
Default: $cadir/ca_crl.pem


.SS cadir
The root directory for the certificate authority.


.TP 2
\(bu
Default: $ssldir/ca


.SS cakey
The CA private key.


.TP 2
\(bu
Default: $cadir/ca_key.pem


.SS capass
Where the CA stores the password for the private key


.TP 2
\(bu
Default: $caprivatedir/ca.pass


.SS caprivatedir
Where the CA stores private certificate information.


.TP 2
\(bu
Default: $cadir/private


.SS capub
The CA public key.


.TP 2
\(bu
Default: $cadir/ca_pub.pem


.SS casesensitive
Whether matching in case statements and selectors should be case\-sensitive.  Case insensitivity is handled by downcasing all values before comparison.


.TP 2
\(bu
Default: false


.SS cert_inventory
A Complete listing of all certificates


.TP 2
\(bu
Default: $cadir/inventory.txt


.SS certdir
The certificate directory.


.TP 2
\(bu
Default: $ssldir/certs


.SS certdnsnames
The DNS names on the Server certificate as a colon\-separated list. If it\'s 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 \'puppet\'.


.SS certname
The name to use when handling certificates.  Defaults to the fully qualified domain name.


.TP 2
\(bu
Default: absinthe.lovedthanlost.net


.SS classfile
The file in which puppetd stores a list of the classes associated with the retrieved configuration.  Can be loaded in the separate 
.\" visit_literal
puppet
.\" depart_literal
 executable using the 
.\" visit_literal
\-\-loadclasses
.\" depart_literal
 option.


.TP 2
\(bu
Default: $statedir/classes.txt


.SS clientbucketdir
Where FileBucket files are stored locally.


.TP 2
\(bu
Default: $vardir/clientbucket


.SS code
Code to parse directly.  This is essentially only used by 
.\" visit_literal
puppet
.\" depart_literal
, and should only be set if you\'re writing your own Puppet executable


.SS color
Whether to use colors when logging to the console. Valid values are 
.\" visit_literal
ansi
.\" depart_literal
 (equivalent to 
.\" visit_literal
true
.\" depart_literal
), 
.\" visit_literal
html
.\" depart_literal
 (mostly used during testing with TextMate), and 
.\" visit_literal
false
.\" depart_literal
, which produces no color.


.TP 2
\(bu
Default: ansi


.SS confdir
The main Puppet configuration directory.  The default for this parameter is calculated based on the user.  If the process is runnig as root or the user that 
.\" visit_literal
puppetmasterd
.\" depart_literal
 is supposed to run as, it defaults to a system directory, but if it\'s running as any other user, it defaults to being in 
.\" visit_literal
~
.\" depart_literal
.


.TP 2
\(bu
Default: /etc/puppet


.SS config
The configuration file for puppetdoc.


.TP 2
\(bu
Default: $confdir/puppet.conf


.SS configprint
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 \'all\'.  This feature is only available in Puppet versions higher than 0.18.4.


.SS configtimeout
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.


.TP 2
\(bu
Default: 120


.SS csrdir
Where the CA stores certificate requests


.TP 2
\(bu
Default: $cadir/requests


.SS daemonize
Send the process into the background.  This is the default.


.TP 2
\(bu
Default: true


.SS dbadapter
The type of database to use.


.TP 2
\(bu
Default: sqlite3


.SS dblocation
The database cache for client configurations.  Used for querying within the language.


.TP 2
\(bu
Default: $statedir/clientconfigs.sqlite3


.SS dbmigrate
Whether to automatically migrate the database.


.TP 2
\(bu
Default: false


.SS dbname
The name of the database to use.


.TP 2
\(bu
Default: puppet


.SS dbpassword
The database password for Client caching. Only used when networked databases are used.


.TP 2
\(bu
Default: puppet


.SS dbserver
The database server for Client caching. Only used when networked databases are used.


.TP 2
\(bu
Default: localhost


.SS dbsocket
The database socket location. Only used when networked databases are used.  Will be ignored if the value is an empty string.


.SS dbuser
The database user for Client caching. Only used when networked databases are used.


.TP 2
\(bu
Default: puppet


.SS diff
Which diff command to use when printing differences between files.


.TP 2
\(bu
Default: diff


.SS diff_args
Which arguments to pass to the diff command when printing differences between files.


.SS downcasefacts
Whether facts should be made all lowercase when sent to the server.


.TP 2
\(bu
Default: false


.SS dynamicfacts
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.


.TP 2
\(bu
Default: memorysize,memoryfree,swapsize,swapfree


.SS environment
The environment Puppet is running in.  For clients (e.g., 
.\" visit_literal
puppetd
.\" depart_literal
) this determines the environment itself, which is used to find modules and much more.  For servers (i.e., 
.\" visit_literal
puppetmasterd
.\" depart_literal
) this provides the default environment for nodes we know nothing about.


.TP 2
\(bu
Default: production


.SS environments
The valid environments for Puppet clients. This is more useful as a server\-side setting than client, but any environment chosen must be in this list.  Values should be separated by a comma.


.TP 2
\(bu
Default: production,development


.SS evaltrace
Whether each resource should log when it is being evaluated.  This allows you to interactively see exactly what is being done.


.TP 2
\(bu
Default: false


.SS external_nodes
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 
.\" visit_literal
classes
.\" depart_literal
 and 
.\" visit_literal
parameters
.\" depart_literal
, where 
.\" visit_literal
classes
.\" depart_literal
 is an array and 
.\" visit_literal
parameters
.\" depart_literal
 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.


.TP 2
\(bu
Default: none


.SS factdest
Where Puppet should store facts that it pulls down from the central server.


.TP 2
\(bu
Default: $vardir/facts


.SS factpath
Where Puppet should look for facts.  Multiple directories should be colon\-separated, like normal PATH variables.


.TP 2
\(bu
Default: $vardir/facts


.SS factsignore
What files to ignore when pulling down facts.


.TP 2
\(bu
Default: .svn CVS


.SS factsource
From where to retrieve facts.  The standard Puppet 
.\" visit_literal
file
.\" depart_literal
 type is used for retrieval, so anything that is a valid file source can be used here.


.TP 2
\(bu
Default: puppet://$server/facts


.SS factsync
Whether facts should be synced with the central server.


.TP 2
\(bu
Default: false


.SS fileserverconfig
Where the fileserver configuration is stored.


.TP 2
\(bu
Default: $confdir/fileserver.conf


.SS filetimeout
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.


.TP 2
\(bu
Default: 15


.SS genconfig
Whether to just print a configuration to stdout and exit.  Only makes sense when used interactively.  Takes into account arguments specified on the CLI.


.TP 2
\(bu
Default: false


.SS genmanifest
Whether to just print a manifest to stdout and exit.  Only makes sense when used interactively.  Takes into account arguments specified on the CLI.


.TP 2
\(bu
Default: false


.SS graph
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).


.TP 2
\(bu
Default: false


.SS graphdir
Where to store dot\-outputted graphs.


.TP 2
\(bu
Default: $statedir/graphs


.SS group
The group puppetmasterd should run as.


.TP 2
\(bu
Default: puppet


.SS hostcert
Where individual hosts store and look for their certificates.


.TP 2
\(bu
Default: $certdir/$certname.pem


.SS hostcsr
Where individual hosts store and look for their certificates.


.TP 2
\(bu
Default: $ssldir/csr_$certname.pem


.SS hostprivkey
Where individual hosts store and look for their private key.


.TP 2
\(bu
Default: $privatekeydir/$certname.pem


.SS hostpubkey
Where individual hosts store and look for their public key.


.TP 2
\(bu
Default: $publickeydir/$certname.pem


.SS http_enable_post_connection_check
Boolean; wheter or not puppetd should validate the server SSL certificate against the request hostname.


.TP 2
\(bu
Default: true


.SS http_proxy_host
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.


.TP 2
\(bu
Default: none


.SS http_proxy_port
The HTTP proxy port to use for outgoing connections


.TP 2
\(bu
Default: 3128


.SS httplog
Where the puppetd web server logs.


.TP 2
\(bu
Default: $logdir/http.log


.SS ignorecache
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.


.TP 2
\(bu
Default: false


.SS ignoreimport
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.


.TP 2
\(bu
Default: false


.SS ignoreschedules
Boolean; whether puppetd should ignore schedules.  This is useful for initial puppetd runs.


.TP 2
\(bu
Default: false


.SS keylength
The bit length of keys.


.TP 2
\(bu
Default: 1024


.SS ldapattrs
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 \'all\' returns all attributes.


.TP 2
\(bu
Default: all


.SS ldapbase
The search base for LDAP searches.  It\'s impossible to provide a meaningful default here, although the LDAP libraries might have one already set.  Generally, it should be the \'ou=Hosts\' branch under your main directory.


.SS ldapclassattrs
The LDAP attributes to use to define Puppet classes.  Values should be comma\-separated.


.TP 2
\(bu
Default: puppetclass


.SS ldapnodes
Whether to search for node configurations in LDAP.  See http://reductivelabs.com/puppet/trac/wiki/LdapNodes/ for more information.


.TP 2
\(bu
Default: false


.SS ldapparentattr
The attribute to use to define the parent node.


.TP 2
\(bu
Default: parentnode


.SS ldappassword
The password to use to connect to LDAP.


.SS ldapport
The LDAP port.  Only used if 
.\" visit_literal
ldapnodes
.\" depart_literal
 is enabled.


.TP 2
\(bu
Default: 389


.SS ldapserver
The LDAP server.  Only used if 
.\" visit_literal
ldapnodes
.\" depart_literal
 is enabled.


.TP 2
\(bu
Default: ldap


.SS ldapssl
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.


.TP 2
\(bu
Default: false


.SS ldapstring
The search string used to find an LDAP node.


.TP 2
\(bu
Default: (&(objectclass=puppetClient)(cn=%s))


.SS ldaptls
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.


.TP 2
\(bu
Default: false


.SS ldapuser
The user to use to connect to LDAP.  Must be specified as a full DN.


.SS lexical
Whether to use lexical scoping (vs. dynamic).


.TP 2
\(bu
Default: false


.SS libdir
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\'s search path


.TP 2
\(bu
Default: $vardir/lib


.SS listen
Whether puppetd should listen for connections.  If this is true, then by default only the 
.\" visit_literal
runner
.\" depart_literal
 server is started, which allows remote authorized and authenticated nodes to connect and trigger 
.\" visit_literal
puppetd
.\" depart_literal
 runs.


.TP 2
\(bu
Default: false


.SS localcacert
Where each client stores the CA certificate.


.TP 2
\(bu
Default: $certdir/ca.pem


.SS localconfig
Where puppetd caches the local configuration.  An extension indicating the cache format is added automatically.


.TP 2
\(bu
Default: $statedir/localconfig


.SS logdir
The Puppet log directory.


.TP 2
\(bu
Default: $vardir/log


.SS manifest
The entry\-point manifest for puppetmasterd.


.TP 2
\(bu
Default: $manifestdir/site.pp


.SS manifestdir
Where puppetmasterd looks for its manifests.


.TP 2
\(bu
Default: $confdir/manifests


.SS masterhttplog
Where the puppetmasterd web server logs.


.TP 2
\(bu
Default: $logdir/masterhttp.log


.SS masterlog
Where puppetmasterd logs.  This is generally not used, since syslog is the default log destination.


.TP 2
\(bu
Default: $logdir/puppetmaster.log


.SS masterport
Which port puppetmasterd listens on.


.TP 2
\(bu
Default: 8140


.SS maximum_uid
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.


.TP 2
\(bu
Default: 4294967290


.SS mkusers
Whether to create the necessary user and group that puppetd will run as.


.TP 2
\(bu
Default: false


.SS modulepath
The search path for modules as a colon\-separated list of directories.


.TP 2
\(bu
Default: $confdir/modules:/usr/share/puppet/modules


.SS name
The name of the service, if we are running as one.  The default is essentially $0 without the path or 
.\" visit_literal
.rb
.\" depart_literal
.


.TP 2
\(bu
Default: puppetdoc


.SS node_name
How the puppetmaster determines the client\'s identity  and sets the \'hostname\', \'fqdn\' and \'domain\' facts for use in the manifest,  in particular for determining which \'node\' statement applies to the client.  Possible values are \'cert\' (use the subject\'s CN in the client\'s  certificate) and \'facter\' (use the hostname that the client  reported in its facts)


.TP 2
\(bu
Default: cert


.SS node_terminus
Where to find information about nodes.


.TP 2
\(bu
Default: plain


.SS noop
Whether puppetd should be run in noop mode.


.TP 2
\(bu
Default: false


.SS paramcheck
Whether to validate parameters during parsing.


.TP 2
\(bu
Default: true


.SS parseonly
Just check the syntax of the manifests.


.TP 2
\(bu
Default: false


.SS passfile
Where puppetd stores the password for its private key. Generally unused.


.TP 2
\(bu
Default: $privatedir/password


.SS path
The shell search path.  Defaults to whatever is inherited from the parent process.


.TP 2
\(bu
Default: none


.SS pidfile
The pid file


.SS plugindest
Where Puppet should store plugins that it pulls down from the central server.


.TP 2
\(bu
Default: $libdir


.SS pluginpath
Where Puppet should look for plugins.  Multiple directories should be colon\-separated, like normal PATH variables.  As of 0.23.1, this option is deprecated; download your custom libraries to the $libdir instead.


.TP 2
\(bu
Default: $vardir/plugins


.SS pluginsignore
What files to ignore when pulling down plugins.


.TP 2
\(bu
Default: .svn CVS


.SS pluginsource
From where to retrieve plugins.  The standard Puppet 
.\" visit_literal
file
.\" depart_literal
 type is used for retrieval, so anything that is a valid file source can be used here.


.TP 2
\(bu
Default: puppet://$server/plugins


.SS pluginsync
Whether plugins should be synced with the central server.


.TP 2
\(bu
Default: false


.SS privatedir
Where the client stores private certificate information.


.TP 2
\(bu
Default: $ssldir/private


.SS privatekeydir
The private key directory.


.TP 2
\(bu
Default: $ssldir/private_keys


.SS publickeydir
The public key directory.


.TP 2
\(bu
Default: $ssldir/public_keys


.SS puppetdlockfile
A lock file to temporarily stop puppetd from doing anything.


.TP 2
\(bu
Default: $statedir/puppetdlock


.SS puppetdlog
The log file for puppetd.  This is generally not used.


.TP 2
\(bu
Default: $logdir/puppetd.log


.SS puppetport
Which port puppetd listens on.


.TP 2
\(bu
Default: 8139


.SS rails_loglevel
The log level for Rails connections.  The value must be a valid log level within Rails.  Production environments normally use 
.\" visit_literal
info
.\" depart_literal
 and other environments normally use 
.\" visit_literal
debug
.\" depart_literal
.


.TP 2
\(bu
Default: info


.SS railslog
Where Rails\-specific logs are sent


.TP 2
\(bu
Default: $logdir/rails.log


.SS report
Whether to send reports after every transaction.


.TP 2
\(bu
Default: false


.SS reportdir
The directory in which to store reports received from the client.  Each client gets a separate subdirectory.


.TP 2
\(bu
Default: $vardir/reports


.SS reportfrom
The \'from\' email address for the reports.


.TP 2
\(bu
Default: report@absinthe.lovedthanlost.net


.SS reports
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).


.TP 2
\(bu
Default: store


.SS reportserver
The server to which to send transaction reports.


.TP 2
\(bu
Default: $server


.SS req_bits
The bit length of the certificates.


.TP 2
\(bu
Default: 2048


.SS rrddir
The directory where RRD database files are stored. Directories for each reporting host will be created under this directory.


.TP 2
\(bu
Default: $vardir/rrd


.SS rrdgraph
Whether RRD information should be graphed.


.TP 2
\(bu
Default: false


.SS rrdinterval
How often RRD should expect data. This should match how often the hosts report back to the server.


.TP 2
\(bu
Default: $runinterval


.SS rundir
Where Puppet PID files are kept.


.TP 2
\(bu
Default: $vardir/run


.SS runinterval
How often puppetd applies the client configuration; in seconds.


.TP 2
\(bu
Default: 1800


.SS sendmail
Where to find the sendmail binary with which to send email.


.SS serial
Where the serial number for certificates is stored.


.TP 2
\(bu
Default: $cadir/serial


.SS server
The server to which server puppetd should connect


.TP 2
\(bu
Default: puppet


.SS servertype
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.


.TP 2
\(bu
Default: webrick


.SS show_diff
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 
.\" visit_literal
diff/lcs
.\" depart_literal
 Ruby library.


.TP 2
\(bu
Default: false


.SS signeddir
Where the CA stores signed certificates.


.TP 2
\(bu
Default: $cadir/signed


.SS smtpserver
The server through which to send email reports.


.TP 2
\(bu
Default: none


.SS splay
Whether to sleep for a pseudo\-random (but consistent) amount of time before a run.


.TP 2
\(bu
Default: false


.SS splaylimit
The maximum time to delay before runs.  Defaults to being the same as the run interval.


.TP 2
\(bu
Default: $runinterval


.SS ssl_client_header
The header containing an authenticated client\'s SSL DN.  Only used with Mongrel.  This header must be set by the proxy to the authenticated client\'s SSL DN (e.g., 
.\" visit_literal
/CN=puppet.reductivelabs.com
.\" depart_literal
). See http://reductivelabs.com/puppet/trac/wiki/UsingMongrel for more information.


.TP 2
\(bu
Default: HTTP_X_CLIENT_DN


.SS ssl_client_verify_header
The header containing the status message of the client verification. Only used with Mongrel.  This header must be set by the proxy to \'SUCCESS\' if the client successfully authenticated, and anything else otherwise. See http://reductivelabs.com/puppet/trac/wiki/UsingMongrel for more information.


.TP 2
\(bu
Default: HTTP_X_CLIENT_VERIFY


.SS ssldir
Where SSL certificates are kept.


.TP 2
\(bu
Default: $confdir/ssl


.SS statedir
The directory where Puppet state is stored.  Generally, this directory can be removed without causing harm (although it might result in spurious service restarts).


.TP 2
\(bu
Default: $vardir/state


.SS statefile
Where puppetd and puppetmasterd store state associated with the running configuration.  In the case of puppetmasterd, this file reflects the state discovered through interacting with clients.


.TP 2
\(bu
Default: $statedir/state.yaml


.SS storeconfigs
Whether to store each client\'s configuration.  This requires ActiveRecord from Ruby on Rails.


.TP 2
\(bu
Default: false


.SS summarize
Whether to print a transaction summary.


.TP 2
\(bu
Default: false


.SS syslogfacility
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.


.TP 2
\(bu
Default: daemon


.SS tagmap
The mapping between reporting tags and email addresses.


.TP 2
\(bu
Default: $confdir/tagmail.conf


.SS tags
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
Where Puppet looks for template files.


.TP 2
\(bu
Default: $vardir/templates


.SS trace
Whether to print stack traces on some errors


.TP 2
\(bu
Default: false


.SS typecheck
Whether to validate types during parsing.


.TP 2
\(bu
Default: true


.SS usecacheonfailure
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.


.TP 2
\(bu
Default: true


.SS user
The user puppetmasterd should run as.


.TP 2
\(bu
Default: puppet


.SS vardir
Where Puppet stores dynamic and growing data.  The default for this parameter is calculated specially, like confdir.


.TP 2
\(bu
Default: /var/puppet


.SS yamldir
The directory in which YAML data is stored, usually in a subdirectory.


.TP 2
\(bu
Default: $vardir/yaml


.sp
.ce
----

.ce 0
.sp

.I This page autogenerated on Mon May 05 09:33:01 +1000 2008



.\" Generated by docutils manpage writer on 2008-05-05 09:33.
.\"