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 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
|
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "PUPPETCONF" "5" "September 2024" "Puppet, Inc." "Puppet manual"
.
.SH "Configuration settings"
.
.IP "\(bu" 4
Each of these settings can be specified in \fBpuppet\.conf\fR or on the command line\.
.
.IP "\(bu" 4
Puppet Enterprise (PE) and open source Puppet share the configuration settings documented here\. However, PE defaults differ from open source defaults for some settings, such as \fBnode_terminus\fR, \fBstoreconfigs\fR, \fBalways_retry_plugins\fR, \fBdisable18n\fR, \fBenvironment_timeout\fR (when Code Manager is enabled), and the Puppet Server JRuby \fBmax\-active\-instances\fR setting\. To verify PE configuration defaults, check the \fBpuppet\.conf\fR or \fBpe\-puppet\-server\.conf\fR file after installation\.
.
.IP "\(bu" 4
When using boolean settings on the command line, use \fB\-\-setting\fR and \fB\-\-no\-setting\fR instead of \fB\-\-setting (true|false)\fR\. (Using \fB\-\-setting false\fR results in "Error: Could not parse application options: needless argument"\.)
.
.IP "\(bu" 4
Settings can be interpolated as \fB$variables\fR in other settings; \fB$environment\fR is special, in that puppet master will interpolate each agent node\'s environment instead of its own\.
.
.IP "\(bu" 4
Multiple values should be specified as comma\-separated lists; multiple directories should be separated with the system path separator (usually a colon)\.
.
.IP "\(bu" 4
Settings that represent time intervals should be specified in duration format: an integer immediately followed by one of the units \'y\' (years of 365 days), \'d\' (days), \'h\' (hours), \'m\' (minutes), or \'s\' (seconds)\. The unit cannot be combined with other units, and defaults to seconds when omitted\. Examples are \'3600\' which is equivalent to \'1h\' (one hour), and \'1825d\' which is equivalent to \'5y\' (5 years)\.
.
.IP "\(bu" 4
If you use the \fBsplay\fR setting, note that the period that it waits changes each time the Puppet agent is restarted\.
.
.IP "\(bu" 4
Settings that take a single file or directory can optionally set the owner, group, and mode for their value: \fBrundir = $vardir/run { owner = puppet, group = puppet, mode = 644 }\fR
.
.IP "\(bu" 4
The Puppet executables ignores any setting that isn\'t relevant to their function\.
.
.IP "" 0
.
.P
See the configuration guide \fIhttps://puppet\.com/docs/puppet/latest/config_about_settings\.html\fR for more details\.
.
.SS "agent_catalog_run_lockfile"
A lock file to indicate that a puppet agent catalog run is currently in progress\. The file contains the pid of the process that holds the lock on the catalog run\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/agent_catalog_run\.lock\fR
.
.IP "" 0
.
.SS "agent_disabled_lockfile"
A lock file to indicate that puppet agent runs have been administratively disabled\. File contains a JSON object with state information\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/agent_disabled\.lock\fR
.
.IP "" 0
.
.SS "allow_duplicate_certs"
Whether to allow a new certificate request to overwrite an existing certificate request\. If true, then the old certificate must be cleaned using \fBpuppetserver ca clean\fR, and the new request signed using \fBpuppetserver ca sign\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "allow_pson_serialization"
Whether to allow PSON serialization\. When unable to serialize to JSON or other formats, Puppet falls back to PSON\. This option affects the configuration management service responses of Puppet Server and the process by which the agent saves its cached catalog\. With a default value of \fBfalse\fR, this option is useful in preventing the loss of data because rich data cannot be serialized via PSON\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "always_retry_plugins"
Affects how we cache attempts to load Puppet resource types and features\. If true, then calls to \fBPuppet\.type\.<type>?\fR \fBPuppet\.feature\.<feature>?\fR will always attempt to load the type or feature (which can be an expensive operation) unless it has already been loaded successfully\. This makes it possible for a single agent run to, e\.g\., install a package that provides the underlying capabilities for a type or feature, and then later load that type or feature during the same run (even if the type or feature had been tested earlier and had not been available)\.
.
.P
If this setting is set to false, then types and features will only be checked once, and if they are not available, the negative result is cached and returned for all subsequent attempts to load the type or feature\. This behavior is almost always appropriate for the server, and can result in a significant performance improvement for types and features that are checked frequently\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "autoflush"
Whether log files should always flush to disk\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "autosign"
Whether (and how) to autosign certificate requests\. This setting is only relevant on a Puppet Server acting as a certificate authority (CA)\.
.
.P
Valid values are true (autosigns all certificate requests; not recommended), false (disables autosigning certificates), or the absolute path to a file\.
.
.P
The file specified in this setting may be either a \fBconfiguration file\fR or a \fBcustom policy executable\.\fR Puppet will automatically determine what it is: If the Puppet user (see the \fBuser\fR setting) can execute the file, it will be treated as a policy executable; otherwise, it will be treated as a config file\.
.
.P
If a custom policy executable is configured, the CA Puppet Server will run it every time it receives a CSR\. The executable will be passed the subject CN of the request \fIas a command line argument,\fR and the contents of the CSR in PEM format \fIon stdin\.\fR It should exit with a status of 0 if the cert should be autosigned and non\-zero if the cert should not be autosigned\.
.
.P
If a certificate request is not autosigned, it will persist for review\. An admin user can use the \fBpuppetserver ca sign\fR command to manually sign it, or can delete the request\.
.
.P
For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://puppet\.com/docs/puppet/latest/config_file_autosign\.html\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/autosign\.conf\fR
.
.IP "" 0
.
.SS "basemodulepath"
The search path for \fBglobal\fR modules\. Should be specified as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
.
.P
These are the modules that will be used by \fIall\fR environments\. Note that the \fBmodules\fR directory of the active environment will have priority over any global directories\. For more info, see \fIhttps://puppet\.com/docs/puppet/latest/environments_about\.html\fR
.
.IP "\(bu" 4
\fIDefault\fR: \fB$codedir/modules:/opt/puppetlabs/puppet/modules\fR
.
.IP "" 0
.
.SS "binder_config"
The binder configuration file\. Puppet reads this file on each request to configure the bindings system\. If set to nil (the default), a $confdir/binder_config\.yaml is optionally loaded\. If it does not exists, a default configuration is used\. If the setting :binding_config is specified, it must reference a valid and existing yaml file\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "bucketdir"
Where FileBucket files are stored\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/bucket\fR
.
.IP "" 0
.
.SS "ca_fingerprint"
The expected fingerprint of the CA certificate\. If specified, the agent will compare the CA certificate fingerprint that it downloads against this value and reject the CA certificate if the values do not match\. This only applies during the first download of the CA certificate\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "ca_name"
The name to use the Certificate Authority certificate\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBPuppet CA: $certname\fR
.
.IP "" 0
.
.SS "ca_port"
The port to use for the certificate authority\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$serverport\fR
.
.IP "" 0
.
.SS "ca_refresh_interval"
How often the Puppet agent refreshes its local CA certificates\. By default, CA certificates are refreshed every 24 hours\. If a different interval is specified, the agent refreshes its CA certificates during the next agent run if the elapsed time since the certificates were last refreshed exceeds the specified duration\.
.
.P
In general, the interval should be greater than the \fBruninterval\fR value\. Setting the \fBca_refresh_interval\fR value to 0 or an equal or lesser value than \fBruninterval\fR causes the CA certificates to be refreshed on every run\.
.
.P
If the agent downloads new CA certs, the agent uses those for subsequent network requests\. If the refresh request fails or if the CA certs are unchanged on the server, then the agent run will continue using the local CA certs it already has\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB1d\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$server\fR
.
.IP "" 0
.
.SS "ca_ttl"
The default TTL for new certificates\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB5y\fR
.
.IP "" 0
.
.SS "cacert"
The CA certificate\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/ca_crt\.pem\fR
.
.IP "" 0
.
.SS "cacrl"
The certificate revocation list (CRL) for the CA\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/ca_crl\.pem\fR
.
.IP "" 0
.
.SS "cadir"
The root directory for the certificate authority\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB/etc/puppetlabs/puppetserver/ca\fR
.
.IP "" 0
.
.SS "cakey"
The CA private key\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/ca_key\.pem\fR
.
.IP "" 0
.
.SS "capub"
The CA public key\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/ca_pub\.pem\fR
.
.IP "" 0
.
.SS "catalog_cache_terminus"
How to store cached catalogs\. Valid values are \'json\', \'msgpack\' and \'yaml\'\. The agent application defaults to \'json\'\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "catalog_terminus"
Where to get node catalogs\. This is useful to change if, for instance, you\'d like to pre\-compile catalogs and store them in memcached or some other easily\-accessed store\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBcompiler\fR
.
.IP "" 0
.
.SS "cert_inventory"
The inventory file\. This is a text file to which the CA writes a complete listing of all certificates\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/inventory\.txt\fR
.
.IP "" 0
.
.SS "certdir"
The certificate directory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/certs\fR
.
.IP "" 0
.
.SS "certificate_revocation"
Whether certificate revocation checking should be enabled, and what level of checking should be performed\.
.
.P
When certificate revocation is enabled, Puppet expects the contents of its CRL to be one or more PEM\-encoded CRLs concatenated together\. When using a cert bundle, CRLs for all CAs in the chain of trust must be included in the crl file\. The chain should be ordered from least to most authoritative, with the first CRL listed being for the root of the chain and the last being for the leaf CA\.
.
.P
When certificate_revocation is set to \'true\' or \'chain\', Puppet ensures that each CA in the chain of trust has not been revoked by its issuing CA\.
.
.P
When certificate_revocation is set to \'leaf\', Puppet verifies certs against the issuing CA\'s revocation list, but it does not verify the revocation status of the issuing CA or any CA above it within the chain of trust\.
.
.P
When certificate_revocation is set to \'false\', Puppet disables all certificate revocation checking and does not attempt to download the CRL\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBchain\fR
.
.IP "" 0
.
.SS "certname"
The name to use when handling certificates\. When a node requests a certificate from the CA Puppet Server, it uses the value of the \fBcertname\fR setting as its requested Subject CN\.
.
.P
This is the name used when managing a node\'s permissions in Puppet Server\'s auth\.conf \fIhttps://puppet\.com/docs/puppetserver/latest/config_file_auth\.html\fR\. In most cases, it is also used as the node\'s name when matching node definitions \fIhttps://puppet\.com/docs/puppet/latest/lang_node_definitions\.html\fR and requesting data from an ENC\. (This can be changed with the \fBnode_name_value\fR and \fBnode_name_fact\fR settings, although you should only do so if you have a compelling reason\.)
.
.P
A node\'s certname is available in Puppet manifests as \fB$trusted[\'certname\']\fR\. (See Facts and Built\-In Variables \fIhttps://puppet\.com/docs/puppet/latest/lang_facts_and_builtin_vars\.html\fR for more details\.)
.
.IP "\(bu" 4
For best compatibility, you should limit the value of \fBcertname\fR to only use lowercase letters, numbers, periods, underscores, and dashes\. (That is, it should match \fB/A[a\-z0\-9\._\-]+Z/\fR\.)
.
.IP "\(bu" 4
The special value \fBca\fR is reserved, and can\'t be used as the certname for a normal node\.
.
.IP
\fBNote:\fR You must set the certname in the main section of the puppet\.conf file\. Setting it in a different section causes errors\.
.
.IP "" 0
.
.P
Defaults to the node\'s fully qualified domain name\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBthe Host\'s fully qualified domain name, as determined by Facter\fR
.
.IP "" 0
.
.SS "ciphers"
The list of ciphersuites for TLS connections initiated by puppet\. The default value is chosen to support TLS 1\.0 and up, but can be made more restrictive if needed\. The ciphersuites must be specified in OpenSSL format, not IANA\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBECDHE\-ECDSA\-AES128\-GCM\-SHA256:ECDHE\-RSA\-AES128\-GCM\-SHA256:ECDHE\-ECDSA\-AES256\-GCM\-SHA384:ECDHE\-RSA\-AES256\-GCM\-SHA384:ECDHE\-ECDSA\-CHACHA20\-POLY1305:ECDHE\-RSA\-CHACHA20\-POLY1305:DHE\-RSA\-AES128\-GCM\-SHA256:DHE\-RSA\-AES256\-GCM\-SHA384:DHE\-RSA\-CHACHA20\-POLY1305:ECDHE\-ECDSA\-AES128\-SHA256:ECDHE\-RSA\-AES128\-SHA256:ECDHE\-ECDSA\-AES128\-SHA:ECDHE\-RSA\-AES128\-SHA:ECDHE\-ECDSA\-AES256\-SHA384:ECDHE\-RSA\-AES256\-SHA384:ECDHE\-ECDSA\-AES256\-SHA:ECDHE\-RSA\-AES256\-SHA:DHE\-RSA\-AES128\-SHA256:DHE\-RSA\-AES256\-SHA256:AES128\-GCM\-SHA256:AES256\-GCM\-SHA384:AES128\-SHA256:AES256\-SHA256\fR
.
.IP "" 0
.
.SS "classfile"
The file in which puppet agent stores a list of the classes associated with the retrieved configuration\. Can be loaded in the separate \fBpuppet\fR executable using the \fB\-\-loadclasses\fR option\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/classes\.txt\fR
.
.IP "" 0
.
.SS "client_datadir"
The directory in which serialized data is stored on the client\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/client_data\fR
.
.IP "" 0
.
.SS "clientbucketdir"
Where FileBucket files are stored locally\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/clientbucket\fR
.
.IP "" 0
.
.SS "clientyamldir"
The directory in which client\-side YAML data is stored\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/client_yaml\fR
.
.IP "" 0
.
.SS "code"
Code to parse directly\. This is essentially only used by \fBpuppet\fR, and should only be set if you\'re writing your own Puppet executable\.
.
.SS "codedir"
The main Puppet code directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet 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 the user\'s home directory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /etc/puppetlabs/code \-\- Windows: C:\eProgramData\ePuppetLabs\ecode \-\- Non\-root user: ~/\.puppetlabs/etc/code\fR
.
.IP "" 0
.
.SS "color"
Whether to use colors when logging to the console\. Valid values are \fBansi\fR (equivalent to \fBtrue\fR), \fBhtml\fR, and \fBfalse\fR, which produces no color\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBansi\fR
.
.IP "" 0
.
.SS "confdir"
The main Puppet configuration directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet 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 the user\'s home directory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /etc/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\eetc \-\- Non\-root user: ~/\.puppetlabs/etc/puppet\fR
.
.IP "" 0
.
.SS "config"
The configuration file for the current puppet application\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/${config_file_name}\fR
.
.IP "" 0
.
.SS "config_file_name"
The name of the puppet config file\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet\.conf\fR
.
.IP "" 0
.
.SS "config_version"
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\.
.
.P
Setting a global value for config_version in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please set a per\-environment value in environment\.conf instead\. For more info, see \fIhttps://puppet\.com/docs/puppet/latest/environments_about\.html\fR
.
.SS "configprint"
Prints the value of a specific configuration setting\. If the name of a setting 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 setting is deprecated, the \'puppet config\' command replaces this functionality\.
.
.SS "crl_refresh_interval"
How often the Puppet agent refreshes its local Certificate Revocation List (CRL)\. By default, the CRL is refreshed every 24 hours\. If a different interval is specified, the agent refreshes its CRL on the next Puppet agent run if the elapsed time since the CRL was last refreshed exceeds the specified interval\.
.
.P
In general, the interval should be greater than the \fBruninterval\fR value\. Setting the \fBcrl_refresh_interval\fR value to 0 or an equal or lesser value than \fBruninterval\fR causes the CRL to be refreshed on every run\.
.
.P
If the agent downloads a new CRL, the agent will use it for subsequent network requests\. If the refresh request fails or if the CRL is unchanged on the server, then the agent run will continue using the local CRL it already has\.This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB1d\fR
.
.IP "" 0
.
.SS "csr_attributes"
An optional file containing custom attributes to add to certificate signing requests (CSRs)\. You should ensure that this file does not exist on your CA Puppet Server; if it does, unwanted certificate extensions may leak into certificates created with the \fBpuppetserver ca generate\fR command\.
.
.P
If present, this file must be a YAML hash containing a \fBcustom_attributes\fR key and/or an \fBextension_requests\fR key\. The value of each key must be a hash, where each key is a valid OID and each value is an object that can be cast to a string\.
.
.P
Custom attributes can be used by the CA when deciding whether to sign the certificate, but are then discarded\. Attribute OIDs can be any OID value except the standard CSR attributes (i\.e\. attributes described in RFC 2985 section 5\.4)\. This is useful for embedding a pre\-shared key for autosigning policy executables (see the \fBautosign\fR setting), often by using the \fB1\.2\.840\.113549\.1\.9\.7\fR ("challenge password") OID\.
.
.P
Extension requests will be permanently embedded in the final certificate\. Extension OIDs must be in the "ppRegCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.1\fR), "ppPrivCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.2\fR), or "ppAuthCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.3\fR) OID arcs\. The ppRegCertExt arc is reserved for four of the most common pieces of data to embed: \fBpp_uuid\fR (\fB\.1\fR), \fBpp_instance_id\fR (\fB\.2\fR), \fBpp_image_name\fR (\fB\.3\fR), and \fBpp_preshared_key\fR (\fB\.4\fR) \-\-\- in the YAML file, these can be referred to by their short descriptive names instead of their full OID\. The ppPrivCertExt arc is unregulated, and can be used for site\-specific extensions\. The ppAuthCert arc is reserved for two pieces of data to embed: \fBpp_authorization\fR (\fB\.1\fR) and \fBpp_auth_role\fR (\fB\.13\fR)\. As with ppRegCertExt, in the YAML file, these can be referred to by their short descriptive name instead of their full OID\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/csr_attributes\.yaml\fR
.
.IP "" 0
.
.SS "csrdir"
Where the CA stores certificate requests\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/requests\fR
.
.IP "" 0
.
.SS "daemonize"
Whether to send the process into the background\. This defaults to true on POSIX systems, and to false on Windows (where Puppet currently cannot daemonize)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "data_binding_terminus"
This setting has been deprecated\. Use of any value other than \'hiera\' should instead be configured in a version 5 hiera\.yaml\. Until this setting is removed, it controls which data binding terminus to use for global automatic data binding (across all environments)\. By default this value is \'hiera\'\. A value of \'none\' turns off the global binding\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBhiera\fR
.
.IP "" 0
.
.SS "default_file_terminus"
The default source for files if no server is given in a uri, e\.g\. puppet:///file\. The default of \fBrest\fR causes the file to be retrieved using the \fBserver\fR setting\. When running \fBapply\fR the default is \fBfile_server\fR, causing requests to be filled locally\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBrest\fR
.
.IP "" 0
.
.SS "default_manifest"
The default main manifest for directory environments\. Any environment that doesn\'t set the \fBmanifest\fR setting in its \fBenvironment\.conf\fR file will use this manifest\.
.
.P
This setting\'s value can be an absolute or relative path\. An absolute path will make all environments default to the same main manifest; a relative path will allow each environment to use its own manifest, and Puppet will resolve the path relative to each environment\'s main directory\.
.
.P
In either case, the path can point to a single file or to a directory of manifests to be evaluated in alphabetical order\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB\./manifests\fR
.
.IP "" 0
.
.SS "default_schedules"
Boolean; whether to generate the default schedule resources\. Setting this to false is useful for keeping external report processors clean of skipped schedule resources\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "deviceconfdir"
The root directory of devices\' $confdir\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/devices\fR
.
.IP "" 0
.
.SS "deviceconfig"
Path to the device config file for puppet device\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/device\.conf\fR
.
.IP "" 0
.
.SS "devicedir"
The root directory of devices\' $vardir\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/devices\fR
.
.IP "" 0
.
.SS "diff"
Which diff command to use when printing differences between files\. This setting has no default value on Windows, as standard \fBdiff\fR is not available, but Puppet can use many third\-party diff tools\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBdiff\fR
.
.IP "" 0
.
.SS "diff_args"
Which arguments to pass to the diff command when printing differences between files\. The command to use can be chosen with the \fBdiff\fR setting\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB\-u\fR
.
.IP "" 0
.
.SS "digest_algorithm"
Which digest algorithm to use for file resources and the filebucket\. Valid values are sha256, sha384, sha512, sha224, md5\. Default is sha256\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBsha256\fR
.
.IP "" 0
.
.SS "disable_i18n"
If true, turns off all translations of Puppet and module log messages, which affects error, warning, and info log messages, as well as any translations in the report and CLI\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "disable_per_environment_manifest"
Whether to disallow an environment\-specific main manifest\. When set to \fBtrue\fR, Puppet will use the manifest specified in the \fBdefault_manifest\fR setting for all environments\. If an environment specifies a different main manifest in its \fBenvironment\.conf\fR file, catalog requests for that environment will fail with an error\.
.
.P
This setting requires \fBdefault_manifest\fR to be set to an absolute path\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "disable_warnings"
A comma\-separated list of warning types to suppress\. If large numbers of warnings are making Puppet\'s logs too large or difficult to use, you can temporarily silence them with this setting\.
.
.P
If you are preparing to upgrade Puppet to a new major version, you should re\-enable all warnings for a while\.
.
.P
Valid values for this setting are:
.
.IP "\(bu" 4
\fBdeprecations\fR \-\-\- disables deprecation warnings\.
.
.IP "\(bu" 4
\fBundefined_variables\fR \-\-\- disables warnings about non existing variables\.
.
.IP "\(bu" 4
\fBundefined_resources\fR \-\-\- disables warnings about non existing resources\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB[]\fR
.
.IP "" 0
.
.SS "dns_alt_names"
A comma\-separated list of alternate DNS names for Puppet Server\. These are extra hostnames (in addition to its \fBcertname\fR) that the server is allowed to use when serving agents\. Puppet checks this setting when automatically creating a certificate for Puppet agent or Puppet Server\. These can be either IP or DNS, and the type should be specified and followed with a colon\. Untyped inputs will default to DNS\.
.
.P
In order to handle agent requests at a given hostname (like "puppet\.example\.com"), Puppet Server needs a certificate that proves it\'s allowed to use that name; if a server shows a certificate that doesn\'t include its hostname, Puppet agents will refuse to trust it\. If you use a single hostname for Puppet traffic but load\-balance it to multiple Puppet Servers, each of those servers needs to include the official hostname in its list of extra names\.
.
.P
\fBNote:\fR The list of alternate names is locked in when the server\'s certificate is signed\. If you need to change the list later, you can\'t just change this setting; you also need to regenerate the certificate\. For more information on that process, see the cert regen docs \fIhttps://puppet\.com/docs/puppet/latest/ssl_regenerate_certificates\.html\fR\.
.
.P
To see all the alternate names your servers are using, log into your CA server and run \fBpuppetserver ca list \-\-all\fR, then check the output for \fB(alt names: \.\.\.)\fR\. Most agent nodes should NOT have alternate names; the only certs that should have them are Puppet Server nodes that you want other agents to trust\.
.
.SS "document_all"
Whether to document all resources when using \fBpuppet doc\fR to generate manifest documentation\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "environment"
The environment in which Puppet is running\. For clients, such as \fBpuppet agent\fR, this determines the environment itself, which Puppet uses to find modules and much more\. For servers, such as \fBpuppet server\fR, this provides the default environment for nodes that Puppet knows nothing about\.
.
.P
When defining an environment in the \fB[agent]\fR section, this refers to the environment that the agent requests from the primary server\. The environment doesn\'t have to exist on the local filesystem because the agent fetches it from the primary server\. This definition is used when running \fBpuppet agent\fR\.
.
.P
When defined in the \fB[user]\fR section, the environment refers to the path that Puppet uses to search for code and modules related to its execution\. This requires the environment to exist locally on the filesystem where puppet is being executed\. Puppet subcommands, including \fBpuppet module\fR and \fBpuppet apply\fR, use this definition\.
.
.P
Given that the context and effects vary depending on the config section \fIhttps://puppet\.com/docs/puppet/latest/config_file_main\.html#config\-sections\fR in which the \fBenvironment\fR setting is defined, do not set it globally\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBproduction\fR
.
.IP "" 0
.
.SS "environment_data_provider"
The name of a registered environment data provider used when obtaining environment specific data\. The three built in and registered providers are \'none\' (no data), \'function\' (data obtained by calling the function \'environment::data()\') and \'hiera\' (data obtained using a data provider configured using a hiera\.yaml file in root of the environment)\. Other environment data providers may be registered in modules on the module path\. For such custom data providers see the respective module documentation\. This setting is deprecated\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "environment_timeout"
How long the Puppet server should cache data it loads from an environment\.
.
.P
A value of \fB0\fR will disable caching\. This setting can also be set to \fBunlimited\fR, which will cache environments until the server is restarted or told to refresh the cache\. All other values will result in Puppet server evicting environments that haven\'t been used within the last \fBenvironment_timeout\fR seconds\.
.
.P
You should change this setting once your Puppet deployment is doing non\-trivial work\. We chose the default value of \fB0\fR because it lets new users update their code without any extra steps, but it lowers the performance of your Puppet server\. We recommend either:
.
.IP "\(bu" 4
Setting this to \fBunlimited\fR and explicitly refreshing your Puppet server as part of your code deployment process\.
.
.IP "\(bu" 4
Setting this to a number that will keep your most actively used environments cached, but allow testing environments to fall out of the cache and reduce memory usage\. A value of 3 minutes (3m) is a reasonable value\.
.
.IP "" 0
.
.P
Once you set \fBenvironment_timeout\fR to a non\-zero value, you need to tell Puppet server to read new code from disk using the \fBenvironment\-cache\fR API endpoint after you deploy new code\. See the docs for the Puppet Server administrative API \fIhttps://puppet\.com/docs/puppetserver/latest/admin\-api/v1/environment\-cache\.html\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB0\fR
.
.IP "" 0
.
.SS "environmentpath"
A search path for directory environments, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
.
.P
This setting must have a value set to enable \fBdirectory environments\.\fR The recommended value is \fB$codedir/environments\fR\. For more details, see \fIhttps://puppet\.com/docs/puppet/latest/environments_about\.html\fR
.
.IP "\(bu" 4
\fIDefault\fR: \fB$codedir/environments\fR
.
.IP "" 0
.
.SS "evaltrace"
Whether each resource should log when it is being evaluated\. This allows you to interactively see exactly what is being done\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "exclude_unchanged_resources"
Specifies how unchanged resources are listed in reports\. When set to \fBtrue\fR, resources that have had no changes after catalog application will not have corresponding unchanged resource status updates listed in a report\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "external_nodes"
The external node classifier (ENC) script to use for node data\. Puppet combines this data with the main manifest to produce node catalogs\.
.
.P
To enable this setting, set the \fBnode_terminus\fR setting to \fBexec\fR\.
.
.P
This setting\'s value must be the path to an executable command that can produce node information\. The command must:
.
.IP "\(bu" 4
Take the name of a node as a command\-line argument\.
.
.IP "\(bu" 4
Return a YAML hash with up to three keys:
.
.IP "\(bu" 4
\fBclasses\fR \-\-\- A list of classes, as an array or hash\.
.
.IP "\(bu" 4
\fBenvironment\fR \-\-\- A string\.
.
.IP "\(bu" 4
\fBparameters\fR \-\-\- A list of top\-scope variables to set, as a hash\.
.
.IP "" 0
.
.IP "\(bu" 4
For unknown nodes, exit with a non\-zero exit code\.
.
.IP "" 0
.
.P
Generally, an ENC script makes requests to an external data source\.
.
.P
For more info, see the ENC documentation \fIhttps://puppet\.com/docs/puppet/latest/nodes_external\.html\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBnone\fR
.
.IP "" 0
.
.SS "fact_name_length_soft_limit"
The soft limit for the length of a fact name\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB2560\fR
.
.IP "" 0
.
.SS "fact_value_length_soft_limit"
The soft limit for the length of a fact value\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB4096\fR
.
.IP "" 0
.
.SS "factpath"
Where Puppet should look for facts\. Multiple directories should be separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/lib/facter:$vardir/facts\fR
.
.IP "" 0
.
.SS "facts_terminus"
The node facts terminus\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfacter\fR
.
.IP "" 0
.
.SS "fileserverconfig"
Where the fileserver configuration is stored\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/fileserver\.conf\fR
.
.IP "" 0
.
.SS "filetimeout"
The minimum time to wait between checking for updates in configuration files\. This timeout determines how quickly Puppet checks whether a file (such as manifests or puppet\.conf) has changed on disk\. The default will change in a future release to be \'unlimited\', requiring a reload of the Puppet service to pick up changes to its internal configuration\. Currently we do not accept a value of \'unlimited\'\. To reparse files within an environment in Puppet Server please use the environment_cache endpoint
.
.IP "\(bu" 4
\fIDefault\fR: \fB15s\fR
.
.IP "" 0
.
.SS "forge_authorization"
The authorization key to connect to the Puppet Forge\. Leave blank for unauthorized or license based connections
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "freeze_main"
Freezes the \'main\' class, disallowing any code to be added to it\. This essentially means that you can\'t have any code outside of a node, class, or definition other than in the site manifest\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "genconfig"
When true, causes Puppet applications to print an example config file to stdout and exit\. The example will include descriptions of each setting, and the current (or default) value of each setting, incorporating any settings overridden on the CLI (with the exception of \fBgenconfig\fR itself)\. This setting only makes sense when specified on the command line as \fB\-\-genconfig\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "genmanifest"
Whether to just print a manifest to stdout and exit\. Only makes sense when specified on the command line as \fB\-\-genmanifest\fR\. Takes into account arguments specified on the CLI\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "graph"
Whether to create \.dot graph files, which let you visualize the dependency and containment relationships in Puppet\'s catalog\. You can load and view these files with tools like OmniGraffle \fIhttp://www\.omnigroup\.com/applications/omnigraffle/\fR (OS X) or graphviz \fIhttp://www\.graphviz\.org/\fR (multi\-platform)\.
.
.P
Graph files are created when \fIapplying\fR a catalog, so this setting should be used on nodes running \fBpuppet agent\fR or \fBpuppet apply\fR\.
.
.P
The \fBgraphdir\fR setting determines where Puppet will save graphs\. Note that we don\'t save graphs for historical runs; Puppet will replace the previous \.dot files with new ones every time it applies a catalog\.
.
.P
See your graphing software\'s documentation for details on opening \.dot files\. If you\'re using GraphViz\'s \fBdot\fR command, you can do a quick PNG render with \fBdot \-Tpng <DOT FILE> \-o <OUTPUT FILE>\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "graphdir"
Where to save \.dot\-format graphs (when the \fBgraph\fR setting is enabled)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/graphs\fR
.
.IP "" 0
.
.SS "group"
The group Puppet Server will run as\. Used to ensure the agent side processes (agent, apply, etc) create files and directories readable by Puppet Server when necessary\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet\fR
.
.IP "" 0
.
.SS "hiera_config"
The hiera configuration file\. Puppet only reads this file on startup, so you must restart the puppet server every time you edit it\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/hiera\.yaml\. However, for backwards compatibility, if a file exists at $codedir/hiera\.yaml, Puppet uses that instead\.\fR
.
.IP "" 0
.
.SS "hostcert"
Where individual hosts store and look for their certificates\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$certdir/$certname\.pem\fR
.
.IP "" 0
.
.SS "hostcert_renewal_interval"
How often the Puppet agent renews its client certificate\. By default, the client certificate is renewed 30 days before the certificate expires\. If a different interval is specified, the agent renews its client certificate during the next agent run, assuming that the client certificate has expired within the specified duration\.
.
.P
In general, the \fBhostcert_renewal_interval\fR value should be greater than the \fBruninterval\fR value\. Setting the \fBhostcert_renewal_interval\fR value to 0 disables automatic renewal\.
.
.P
If the agent downloads a new certificate, the agent will use it for subsequent network requests\. If the refresh request fails, the agent run continues to use its existing certificate\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB30d\fR
.
.IP "" 0
.
.SS "hostcrl"
Where the host\'s certificate revocation list can be found\. This is distinct from the certificate authority\'s CRL\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/crl\.pem\fR
.
.IP "" 0
.
.SS "hostcsr"
Where individual hosts store their certificate request (CSR) while waiting for the CA to issue their certificate\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$requestdir/$certname\.pem\fR
.
.IP "" 0
.
.SS "hostprivkey"
Where individual hosts store and look for their private key\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$privatekeydir/$certname\.pem\fR
.
.IP "" 0
.
.SS "hostpubkey"
Where individual hosts store and look for their public key\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$publickeydir/$certname\.pem\fR
.
.IP "" 0
.
.SS "http_connect_timeout"
The maximum amount of time to wait when establishing an HTTP connection\. The default value is 2 minutes\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB2m\fR
.
.IP "" 0
.
.SS "http_debug"
Whether to write HTTP request and responses to stderr\. This should never be used in a production environment\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "http_extra_headers"
The list of extra headers that will be sent with http requests to the primary server\. The header definition consists of a name and a value separated by a colon\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB[]\fR
.
.IP "" 0
.
.SS "http_keepalive_timeout"
The maximum amount of time a persistent HTTP connection can remain idle in the connection pool, before it is closed\. This timeout should be shorter than the keepalive timeout used on the HTTP server, e\.g\. Apache KeepAliveTimeout directive\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB4s\fR
.
.IP "" 0
.
.SS "http_proxy_host"
The HTTP proxy host to use for outgoing connections\. The proxy will be bypassed if the server\'s hostname matches the NO_PROXY environment variable or \fBno_proxy\fR setting\. Note: You may need to use a FQDN for the server hostname when using a proxy\. Environment variable http_proxy or HTTP_PROXY will override this value\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBnone\fR
.
.IP "" 0
.
.SS "http_proxy_password"
The password for the user of an authenticated HTTP proxy\. Requires the \fBhttp_proxy_user\fR setting\.
.
.P
Note that passwords must be valid when used as part of a URL\. If a password contains any characters with special meanings in URLs (as specified by RFC 3986 section 2\.2), they must be URL\-encoded\. (For example, \fB#\fR would become \fB%23\fR\.)
.
.IP "\(bu" 4
\fIDefault\fR: \fBnone\fR
.
.IP "" 0
.
.SS "http_proxy_port"
The HTTP proxy port to use for outgoing connections
.
.IP "\(bu" 4
\fIDefault\fR: \fB3128\fR
.
.IP "" 0
.
.SS "http_proxy_user"
The user name for an authenticated HTTP proxy\. Requires the \fBhttp_proxy_host\fR setting\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBnone\fR
.
.IP "" 0
.
.SS "http_read_timeout"
The time to wait for data to be read from an HTTP connection\. If nothing is read after the elapsed interval then the connection will be closed\. The default value is 10 minutes\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB10m\fR
.
.IP "" 0
.
.SS "http_user_agent"
The HTTP User\-Agent string to send when making network requests\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBPuppet/<version> Ruby/<version> (<architecture>)\fR
.
.IP "" 0
.
.SS "ignore_plugin_errors"
Whether the puppet run should ignore errors during pluginsync\. If the setting is false and there are errors during pluginsync, then the agent will abort the run and submit a report containing information about the failed run\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "ignoremissingtypes"
Skip searching for classes and definitions that were missing during a prior compilation\. The list of missing objects is maintained per\-environment and persists until the environment is cleared or the primary server is restarted\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "ignoreschedules"
Boolean; whether puppet agent should ignore schedules\. This is useful for initial puppet agent runs\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "include_legacy_facts"
Whether to include legacy facts when requesting a catalog\. This option can be set to \fBfalse\fR if all puppet manifests, hiera\.yaml, and hiera configuration layers no longer access legacy facts, such as \fB$osfamily\fR, and instead access structured facts, such as \fB$facts[\'os\'][\'family\']\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "key_type"
The type of private key\. Valid values are \fBrsa\fR and \fBec\fR\. Default is \fBrsa\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBrsa\fR
.
.IP "" 0
.
.SS "keylength"
The bit length of keys\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB4096\fR
.
.IP "" 0
.
.SS "lastrunfile"
Where puppet agent stores the last run report summary in yaml format\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$publicdir/last_run_summary\.yaml\fR
.
.IP "" 0
.
.SS "lastrunreport"
Where Puppet Agent stores the last run report, by default, in yaml format\. The format of the report can be changed by setting the \fBcache\fR key of the \fBreport\fR terminus in the routes\.yaml \fIhttps://puppet\.com/docs/puppet/latest/config_file_routes\.html\fR file\. To avoid mismatches between content and file extension, this setting needs to be manually updated to reflect the terminus changes\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/last_run_report\.yaml\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBall\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppetclass\fR
.
.IP "" 0
.
.SS "ldapparentattr"
The attribute to use to define the parent node\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBparentnode\fR
.
.IP "" 0
.
.SS "ldappassword"
The password to use to connect to LDAP\.
.
.SS "ldapport"
The LDAP port\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB389\fR
.
.IP "" 0
.
.SS "ldapserver"
The LDAP server\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBldap\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "ldapstackedattrs"
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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppetvar\fR
.
.IP "" 0
.
.SS "ldapstring"
The search string used to find an LDAP node\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB(&(objectclass=puppetClient)(cn=%s))\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "ldapuser"
The user to use to connect to LDAP\. Must be specified as a full DN\.
.
.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
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/lib\fR
.
.IP "" 0
.
.SS "localcacert"
Where each client stores the CA certificate\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$certdir/ca\.pem\fR
.
.IP "" 0
.
.SS "localedest"
Where Puppet should store translation files that it pulls down from the central server\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/locales\fR
.
.IP "" 0
.
.SS "localesource"
From where to retrieve translation files\. The standard Puppet \fBfile\fR type is used for retrieval, so anything that is a valid file source can be used here\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet:///locales\fR
.
.IP "" 0
.
.SS "location_trusted"
This will allow sending the name + password and the cookie header to all hosts that puppet may redirect to\. This may or may not introduce a security breach if puppet redirects you to a site to which you\'ll send your authentication info and cookies\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "log_level"
Default logging level for messages from Puppet\. Allowed values are:
.
.IP "\(bu" 4
debug
.
.IP "\(bu" 4
info
.
.IP "\(bu" 4
notice
.
.IP "\(bu" 4
warning
.
.IP "\(bu" 4
err
.
.IP "\(bu" 4
alert
.
.IP "\(bu" 4
emerg
.
.IP "\(bu" 4
crit
.
.IP "\(bu" 4
\fIDefault\fR: \fBnotice\fR
.
.IP "" 0
.
.SS "logdest"
Where to send log messages\. Choose between \'syslog\' (the POSIX syslog service), \'eventlog\' (the Windows Event Log), \'console\', or the path to a log file\. Multiple destinations can be set using a comma separated list (eg: \fB/path/file1,console,/path/file2\fR)
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "logdir"
The directory in which to store log files
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /var/log/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\elog \-\- Non\-root user: ~/\.puppetlabs/var/log\fR
.
.IP "" 0
.
.SS "manage_internal_file_permissions"
Whether Puppet should manage the owner, group, and mode of files it uses internally\. \fBNote\fR: For Windows agents, the default is \fBfalse\fR for versions 4\.10\.13 and greater, versions 5\.5\.6 and greater, and versions 6\.0 and greater\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "manifest"
The entry\-point manifest for the primary server\. This can be one file or a directory of manifests to be evaluated in alphabetical order\. Puppet manages this path as a directory if one exists or if the path ends with a / or \.
.
.P
Setting a global value for \fBmanifest\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the environment\'s \fBmanifests\fR directory as the main manifest, you can set \fBmanifest\fR in environment\.conf\. For more info, see \fIhttps://puppet\.com/docs/puppet/latest/environments_about\.html\fR
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "masterport"
The default port puppet subcommands use to communicate with Puppet Server\. (eg \fBpuppet facts upload\fR, \fBpuppet agent\fR)\. May be overridden by more specific settings (see \fBca_port\fR, \fBreport_port\fR)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB8140\fR
.
.IP "" 0
.
.SS "max_deprecations"
Sets the max number of logged/displayed parser validation deprecation warnings in case multiple deprecation warnings have been detected\. A value of 0 blocks the logging of deprecation warnings\. The count is per manifest\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB10\fR
.
.IP "" 0
.
.SS "max_errors"
Sets the max number of logged/displayed parser validation errors in case multiple errors have been detected\. A value of 0 is the same as a value of 1; a minimum of one error is always raised\. The count is per manifest\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB10\fR
.
.IP "" 0
.
.SS "max_warnings"
Sets the max number of logged/displayed parser validation warnings in case multiple warnings have been detected\. A value of 0 blocks logging of warnings\. The count is per manifest\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB10\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB4294967290\fR
.
.IP "" 0
.
.SS "maxwaitforcert"
The maximum amount of time the Puppet agent should wait for its certificate request to be signed\. A value of \fBunlimited\fR will cause puppet agent to ask for a signed certificate indefinitely\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBunlimited\fR
.
.IP "" 0
.
.SS "maxwaitforlock"
The maximum amount of time the puppet agent should wait for an already running puppet agent to finish before starting a new one\. This is set by default to 1 minute\. A value of \fBunlimited\fR will cause puppet agent to wait indefinitely\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB1m\fR
.
.IP "" 0
.
.SS "merge_dependency_warnings"
Whether to merge class\-level dependency failure warnings\.
.
.P
When a class has a failed dependency, every resource in the class generates a notice level message about the dependency failure, and a warning level message about skipping the resource\.
.
.P
If true, all messages caused by a class dependency failure are merged into one message associated with the class\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "mkusers"
Whether to create the necessary user and group that puppet agent will run as\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "module_groups"
Extra module groups to request from the Puppet Forge\. This is an internal setting, and users should never change it\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "module_repository"
The module repository
.
.IP "\(bu" 4
\fIDefault\fR: \fBhttps://forgeapi\.puppet\.com\fR
.
.IP "" 0
.
.SS "module_working_dir"
The directory into which module tool data is stored
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/puppet\-module\fR
.
.IP "" 0
.
.SS "modulepath"
The search path for modules, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
.
.P
Setting a global value for \fBmodulepath\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the default modulepath of \fB<ACTIVE ENVIRONMENT\'S MODULES DIR>:$basemodulepath\fR, you can set \fBmodulepath\fR in environment\.conf\. For more info, see \fIhttps://puppet\.com/docs/puppet/latest/environments_about\.html\fR
.
.SS "name"
The name of the application, if we are running as one\. The default is essentially $0 without the path or \fB\.rb\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "named_curve"
The short name for the EC curve used to generate the EC private key\. Valid values must be one of the curves in \fBOpenSSL::PKey::EC\.builtin_curves\fR\. Default is \fBprime256v1\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBprime256v1\fR
.
.IP "" 0
.
.SS "no_proxy"
List of host or domain names that should not go through \fBhttp_proxy_host\fR\. Environment variable no_proxy or NO_PROXY will override this value\. Names can be specified as an FQDN \fBhost\.example\.com\fR, wildcard \fB*\.example\.com\fR, dotted domain \fB\.example\.com\fR, or suffix \fBexample\.com\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBlocalhost, 127\.0\.0\.1\fR
.
.IP "" 0
.
.SS "node_cache_terminus"
How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', or \'yaml\'\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "node_name_fact"
The fact name used to determine the node name used for all requests the agent makes to the primary server\. WARNING: This setting is mutually exclusive with node_name_value\. Changing this setting also requires changes to Puppet Server\'s default auth\.conf \fIhttps://puppet\.com/docs/puppetserver/latest/config_file_auth\.html\fR\.
.
.SS "node_name_value"
The explicit value used for the node name for all requests the agent makes to the primary server\. WARNING: This setting is mutually exclusive with node_name_fact\. Changing this setting also requires changes to Puppet Server\'s default auth\.conf \fIhttps://puppet\.com/docs/puppetserver/latest/config_file_auth\.html\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$certname\fR
.
.IP "" 0
.
.SS "node_terminus"
Which node data plugin to use when compiling node catalogs\.
.
.P
When Puppet compiles a catalog, it combines two primary sources of info: the main manifest, and a node data plugin (often called a "node terminus," for historical reasons)\. Node data plugins provide three things for a given node name:
.
.IP "1." 4
A list of classes to add to that node\'s catalog (and, optionally, values for their parameters)\.
.
.IP "2." 4
Which Puppet environment the node should use\.
.
.IP "3." 4
A list of additional top\-scope variables to set\.
.
.IP "" 0
.
.P
The three main node data plugins are:
.
.IP "\(bu" 4
\fBplain\fR \-\-\- Returns no data, so that the main manifest controls all node configuration\.
.
.IP "\(bu" 4
\fBexec\fR \-\-\- Uses an external node classifier (ENC) \fIhttps://puppet\.com/docs/puppet/latest/nodes_external\.html\fR, configured by the \fBexternal_nodes\fR setting\. This lets you pull a list of Puppet classes from any external system, using a small glue script to perform the request and format the result as YAML\.
.
.IP "\(bu" 4
\fBclassifier\fR (formerly \fBconsole\fR) \-\-\- Specific to Puppet Enterprise\. Uses the PE console for node data\."
.
.IP "\(bu" 4
\fIDefault\fR: \fBplain\fR
.
.IP "" 0
.
.SS "noop"
Whether to apply catalogs in noop mode, which allows Puppet to partially simulate a normal run\. This setting affects puppet agent and puppet apply\.
.
.P
When running in noop mode, Puppet will check whether each resource is in sync, like it does when running normally\. However, if a resource attribute is not in the desired state (as declared in the catalog), Puppet will take no action, and will instead report the changes it \fIwould\fR have made\. These simulated changes will appear in the report sent to the primary Puppet server, or be shown on the console if running puppet agent or puppet apply in the foreground\. The simulated changes will not send refresh events to any subscribing or notified resources, although Puppet will log that a refresh event \fIwould\fR have been sent\.
.
.P
\fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://puppet\.com/docs/puppet/latest/metaparameter\.html#noop\fR allows you to apply individual resources in noop mode, and will override the global value of the \fBnoop\fR setting\. This means a resource with \fBnoop => false\fR \fIwill\fR be changed if necessary, even when running puppet agent with \fBnoop = true\fR or \fB\-\-noop\fR\. (Conversely, a resource with \fBnoop => true\fR will only be simulated, even when noop mode is globally disabled\.)
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "number_of_facts_soft_limit"
The soft limit for the total number of fact values\. This counts the child elements of all facts (e\.g\. all items of an array or a hash), not just top level facts\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB10240\fR
.
.IP "" 0
.
.SS "onetime"
Perform one configuration run and exit, rather than spawning a long\-running daemon\. This is useful for interactively running puppet agent, or running puppet agent from cron\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "passfile"
Where puppet agent stores the password for its private key\. Generally unused\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$privatedir/password\fR
.
.IP "" 0
.
.SS "path"
The shell search path\. Defaults to whatever is inherited from the parent process\.
.
.P
This setting can only be set in the \fB[main]\fR section of puppet\.conf; it cannot be set in \fB[server]\fR, \fB[agent]\fR, or an environment config section\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBnone\fR
.
.IP "" 0
.
.SS "payload_soft_limit"
The soft limit for the size of the payload\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB16777216\fR
.
.IP "" 0
.
.SS "pidfile"
The file containing the PID of a running process\. This file is intended to be used by service management frameworks and monitoring systems to determine if a puppet process is still in the process table\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$rundir/${run_mode}\.pid\fR
.
.IP "" 0
.
.SS "plugindest"
Where Puppet should store plugins that it pulls down from the central server\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$libdir\fR
.
.IP "" 0
.
.SS "pluginfactdest"
Where Puppet should store external facts that are being handled by pluginsync
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/facts\.d\fR
.
.IP "" 0
.
.SS "pluginfactsource"
Where to retrieve external facts for pluginsync
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet:///pluginfacts\fR
.
.IP "" 0
.
.SS "pluginsignore"
What files to ignore when pulling down plugins\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB\.svn CVS \.git \.hg\fR
.
.IP "" 0
.
.SS "pluginsource"
From where to retrieve plugins\. The standard Puppet \fBfile\fR type is used for retrieval, so anything that is a valid file source can be used here\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet:///plugins\fR
.
.IP "" 0
.
.SS "pluginsync"
Whether plugins should be synced with the central server\. This setting is deprecated\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "postrun_command"
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"
The preferred means of serializing ruby instances for passing over the wire\. This won\'t 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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBjson\fR
.
.IP "" 0
.
.SS "preprocess_deferred"
Whether Puppet should call deferred functions before applying the catalog\. If set to \fBtrue\fR, all prerequisites required for the deferred function must be satisfied before the Puppet run\. If set to \fBfalse\fR, deferred functions follow Puppet relationships and ordering\. In this way, Puppet can install the prerequisites required for a deferred function and call the deferred function in the same run\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "prerun_command"
A command to run before every agent run\. If this command returns a non\-zero return code, the entire Puppet run will fail\.
.
.SS "preview_outputdir"
The directory where catalog previews per node are generated\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/preview\fR
.
.IP "" 0
.
.SS "priority"
The scheduling priority of the process\. Valid values are \'high\', \'normal\', \'low\', or \'idle\', which are mapped to platform\-specific values\. The priority can also be specified as an integer value and will be passed as is, e\.g\. \-5\. Puppet must be running as a privileged user in order to increase scheduling priority\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "privatedir"
Where the client stores private certificate information\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/private\fR
.
.IP "" 0
.
.SS "privatekeydir"
The private key directory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/private_keys\fR
.
.IP "" 0
.
.SS "profile"
Whether to enable experimental performance profiling
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "publicdir"
Where Puppet stores public files\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /opt/puppetlabs/puppet/public \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\epublic \-\- Non\-root user: ~/\.puppetlabs/opt/puppet/public\fR
.
.IP "" 0
.
.SS "publickeydir"
The public key directory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/public_keys\fR
.
.IP "" 0
.
.SS "puppet_trace"
Whether to print the Puppet stack trace on some errors\. This is a noop if \fBtrace\fR is also set\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "puppetdlog"
The fallback log file\. This is only used when the \fB\-\-logdest\fR option is not specified AND Puppet is running on an operating system where both the POSIX syslog service and the Windows Event Log are unavailable\. (Currently, no supported operating systems match that description\.)
.
.P
Despite the name, both puppet agent and puppet server will use this file as the fallback logging destination\.
.
.P
For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet server, puppet agent, and puppet apply\. You can see man pages by running \fBpuppet <SUBCOMMAND> \-\-help\fR, or read them online at https://puppet\.com/docs/puppet/latest/man/\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$logdir/puppetd\.log\fR
.
.IP "" 0
.
.SS "report"
Whether to send reports after every transaction\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "report_configured_environmentpath"
Specifies how environment paths are reported\. When the value of \fBversioned_environment_dirs\fR is \fBtrue\fR, Puppet applies the readlink function to the \fBenvironmentpath\fR setting when constructing the environment\'s modulepath\. The full readlinked path is referred to as the "resolved path," and the configured path potentially containing symlinks is the "configured path\." When reporting where resources come from, users may choose between the configured and resolved path\.
.
.P
When set to \fBfalse\fR, the resolved paths are reported instead of the configured paths\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "report_include_system_store"
Whether the \'http\' report processor should include the system certificate store when submitting reports to HTTPS URLs\. If false, then the \'http\' processor will only trust HTTPS report servers whose certificates are issued by the puppet CA or one of its intermediate CAs\. If true, the processor will additionally trust CA certificates in the system\'s certificate store\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "report_port"
The port to communicate with the report_server\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$serverport\fR
.
.IP "" 0
.
.SS "report_server"
The server to send transaction reports to\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$server\fR
.
.IP "" 0
.
.SS "reportdir"
The directory in which to store reports\. Each node gets a separate subdirectory in this directory\. This setting is only used when the \fBstore\fR report processor is enabled (see the \fBreports\fR setting)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/reports\fR
.
.IP "" 0
.
.SS "reports"
The list of report handlers to use\. When using multiple report handlers, their names should be comma\-separated, with whitespace allowed\. (For example, \fBreports = http, store\fR\.)
.
.P
This setting is relevant to puppet server and puppet apply\. The primary Puppet server will call these report handlers with the reports it receives from agent nodes, and puppet apply will call them with its own report\. (In all cases, the node applying the catalog must have \fBreport = true\fR\.)
.
.P
See the report reference for information on the built\-in report handlers; custom report handlers can also be loaded from modules\. (Report handlers are loaded from the lib directory, at \fBpuppet/reports/NAME\.rb\fR\.)
.
.P
To turn off reports entirely, set this to \fBnone\fR
.
.IP "\(bu" 4
\fIDefault\fR: \fBstore\fR
.
.IP "" 0
.
.SS "reporturl"
The URL that reports should be forwarded to\. This setting is only used when the \fBhttp\fR report processor is enabled (see the \fBreports\fR setting)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBhttp://localhost:3000/reports/upload\fR
.
.IP "" 0
.
.SS "requestdir"
Where host certificate requests are stored\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/certificate_requests\fR
.
.IP "" 0
.
.SS "resourcefile"
The file in which puppet agent stores a list of the resources associated with the retrieved configuration\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/resources\.txt\fR
.
.IP "" 0
.
.SS "resubmit_facts"
Whether to send updated facts after every transaction\. By default puppet only submits facts at the beginning of the transaction before applying a catalog\. Since puppet can modify the state of the system, the value of the facts may change after puppet finishes\. Therefore, any facts stored in puppetdb may not be consistent until the agent next runs, typically in 30 minutes\. If this feature is enabled, puppet will resubmit facts after applying its catalog, ensuring facts for the node stored in puppetdb are current\. However, this will double the fact submission load on puppetdb, so it is disabled by default\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "rich_data"
Enables having extended data in the catalog by storing them as a hash with the special key \fB__ptype\fR\. When enabled, resource containing values of the data types \fBBinary\fR, \fBRegexp\fR, \fBSemVer\fR, \fBSemVerRange\fR, \fBTimespan\fR and \fBTimestamp\fR, as well as instances of types derived from \fBObject\fR retain their data type\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "route_file"
The YAML file containing indirector route configuration\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/routes\.yaml\fR
.
.IP "" 0
.
.SS "rundir"
Where Puppet PID files are kept\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /var/run/puppetlabs \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\erun \-\- Non\-root user: ~/\.puppetlabs/var/run\fR
.
.IP "" 0
.
.SS "runinterval"
How often puppet agent applies the catalog\. Note that a runinterval of 0 means "run continuously" rather than "never run\." This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB30m\fR
.
.IP "" 0
.
.SS "runtimeout"
The maximum amount of time an agent run is allowed to take\. A Puppet agent run that exceeds this timeout will be aborted\. A value of 0 disables the timeout\. Defaults to 1 hour\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB1h\fR
.
.IP "" 0
.
.SS "serial"
Where the serial number for certificates is stored\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/serial\fR
.
.IP "" 0
.
.SS "server"
The primary Puppet server to which the Puppet agent should connect\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet\fR
.
.IP "" 0
.
.SS "server_datadir"
The directory in which serialized data is stored, usually in a subdirectory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/server_data\fR
.
.IP "" 0
.
.SS "server_list"
The list of primary Puppet servers to which the Puppet agent should connect, in the order that they will be tried\. Each value should be a fully qualified domain name, followed by an optional \':\' and port number\. If a port is omitted, Puppet uses masterport for that host\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB[]\fR
.
.IP "" 0
.
.SS "serverport"
The default port puppet subcommands use to communicate with Puppet Server\. (eg \fBpuppet facts upload\fR, \fBpuppet agent\fR)\. May be overridden by more specific settings (see \fBca_port\fR, \fBreport_port\fR)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB8140\fR
.
.IP "" 0
.
.SS "settings_catalog"
Whether to compile and apply the settings catalog
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "show_diff"
Whether to log and report a contextual diff when files are being replaced\. This causes partial file contents to pass through Puppet\'s normal logging and reporting system, so this setting should be used with caution if you are sending Puppet\'s reports to an insecure destination\. This feature currently requires the \fBdiff/lcs\fR Ruby library\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "signeddir"
Where the CA stores signed certificates\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$cadir/signed\fR
.
.IP "" 0
.
.SS "skip_logging_catalog_request_destination"
Specifies whether to suppress the notice of which compiler supplied the catalog\. A value of \fBtrue\fR suppresses the notice\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "skip_tags"
Tags to use to filter resources\. If this is set, then only resources not tagged with the specified tags will be applied\. Values must be comma\-separated\.
.
.SS "sourceaddress"
The address the agent should use to initiate requests\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "splay"
Whether to sleep for a random amount of time, ranging from immediately up to its \fB$splaylimit\fR, before performing its first agent run after a service restart\. After this period, the agent runs periodically on its \fB$runinterval\fR\.
.
.P
For example, assume a default 30\-minute \fB$runinterval\fR, \fBsplay\fR set to its default of \fBfalse\fR, and an agent starting at :00 past the hour\. The agent would check in every 30 minutes at :01 and :31 past the hour\.
.
.P
With \fBsplay\fR enabled, it waits any amount of time up to its \fB$splaylimit\fR before its first run\. For example, it might randomly wait 8 minutes, then start its first run at :08 past the hour\. With the \fB$runinterval\fR at its default 30 minutes, its next run will be at :38 past the hour\.
.
.P
If you restart an agent\'s puppet service with \fBsplay\fR enabled, it recalculates its splay period and delays its first agent run after restarting for this new period\. If you simultaneously restart a group of puppet agents with \fBsplay\fR enabled, their checkins to your primary servers can be distributed more evenly\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "splaylimit"
The maximum time to delay before an agent\'s first run when \fBsplay\fR is enabled\. Defaults to the agent\'s \fB$runinterval\fR\. The \fBsplay\fR interval is random and recalculated each time the agent is started or restarted\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$runinterval\fR
.
.IP "" 0
.
.SS "srv_domain"
The domain which will be queried to find the SRV records of servers to use\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBexample\.com\fR
.
.IP "" 0
.
.SS "ssl_client_header"
The header containing an authenticated client\'s SSL DN\. This header must be set by the proxy to the authenticated client\'s SSL DN (e\.g\., \fB/CN=puppet\.puppetlabs\.com\fR)\. Puppet will parse out the Common Name (CN) from the Distinguished Name (DN) and use the value of the CN field for authorization\.
.
.P
Note that the name of the HTTP header gets munged by the web server common gateway interface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-DN\fR header, this setting should be \fBHTTP_X_CLIENT_DN\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBHTTP_X_CLIENT_DN\fR
.
.IP "" 0
.
.SS "ssl_client_verify_header"
The header containing the status message of the client verification\. This header must be set by the proxy to \'SUCCESS\' if the client successfully authenticated, and anything else otherwise\.
.
.P
Note that the name of the HTTP header gets munged by the web server common gateway interface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-Verify\fR header, this setting should be \fBHTTP_X_CLIENT_VERIFY\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBHTTP_X_CLIENT_VERIFY\fR
.
.IP "" 0
.
.SS "ssl_lockfile"
A lock file to indicate that the ssl bootstrap process is currently in progress\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$ssldir/ssl\.lock\fR
.
.IP "" 0
.
.SS "ssl_trust_store"
A file containing CA certificates in PEM format that puppet should trust when making HTTPS requests\. This \fBonly\fR applies to https requests to non\-puppet infrastructure, such as retrieving file metadata and content from https file sources, puppet module tool and the \'http\' report processor\. This setting is ignored when making requests to puppet:// URLs such as catalog and report requests\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "ssldir"
Where SSL certificates are kept\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/ssl\fR
.
.IP "" 0
.
.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)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/state\fR
.
.IP "" 0
.
.SS "statefile"
Where Puppet agent and Puppet Server store state associated with the running configuration\. In the case of Puppet Server, this file reflects the state discovered through interacting with clients\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/state\.yaml\fR
.
.IP "" 0
.
.SS "statettl"
How long the Puppet agent should cache when a resource was last checked or synced\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\. A value of \fB0\fR or \fBunlimited\fR will disable cache pruning\.
.
.P
This setting affects the usage of \fBschedule\fR resources, as the information about when a resource was last checked (and therefore when it needs to be checked again) is stored in the \fBstatefile\fR\. The \fBstatettl\fR needs to be large enough to ensure that a resource will not trigger multiple times during a schedule due to its entry expiring from the cache\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB32d\fR
.
.IP "" 0
.
.SS "static_catalogs"
Whether to compile a static catalog \fIhttps://puppet\.com/docs/puppet/latest/static_catalogs\.html#enabling\-or\-disabling\-static\-catalogs\fR, which occurs only on Puppet Server when the \fBcode\-id\-command\fR and \fBcode\-content\-command\fR settings are configured in its \fBpuppetserver\.conf\fR file\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "storeconfigs"
Whether to store each client\'s configuration, including catalogs, facts, and related data\. This also enables the import and export of resources in the Puppet language \- a mechanism for exchange resources between nodes\.
.
.P
By default this uses the \'puppetdb\' backend\.
.
.P
You can adjust the backend using the storeconfigs_backend setting\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "storeconfigs_backend"
Configure the backend terminus used for StoreConfigs\. By default, this uses the PuppetDB store, which must be installed and configured before turning on StoreConfigs\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppetdb\fR
.
.IP "" 0
.
.SS "strict"
The strictness level of puppet\. Allowed values are:
.
.IP "\(bu" 4
off \- do not perform extra validation, do not report
.
.IP "\(bu" 4
warning \- perform extra validation, report as warning
.
.IP "\(bu" 4
error \- perform extra validation, fail with error (default)
.
.IP "" 0
.
.P
The strictness level is for both language semantics and runtime evaluation validation\. In addition to controlling the behavior with this primary server switch some individual warnings may also be controlled by the disable_warnings setting\.
.
.P
No new validations will be added to a micro (x\.y\.z) release, but may be added in minor releases (x\.y\.0)\. In major releases it expected that most (if not all) strictness validation become standard behavior\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBerror\fR
.
.IP "" 0
.
.SS "strict_environment_mode"
Whether the agent specified environment should be considered authoritative, causing the run to fail if the retrieved catalog does not match it\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "strict_variables"
Causes an evaluation error when referencing unknown variables\. (This does not affect referencing variables that are explicitly set to undef)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "summarize"
Whether to print a transaction summary\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "supported_checksum_types"
Checksum types supported by this agent for use in file resources of a static catalog\. Values must be comma\-separated\. Valid types are sha256, sha256lite, sha384, sha512, sha224, sha1, sha1lite, md5, md5lite, mtime, ctime\. Default is sha256, sha384, sha512, sha224, md5\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB["sha256", "sha384", "sha512", "sha224", "md5"]\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBdaemon\fR
.
.IP "" 0
.
.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 "tasks"
Turns on experimental support for tasks and plans in the puppet language\. This is for internal API use only\. Do not change this setting\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "top_level_facts_soft_limit"
The soft limit for the number of top level facts\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB512\fR
.
.IP "" 0
.
.SS "trace"
Whether to print stack traces on some errors\. Will print internal Ruby stack trace interleaved with Puppet function frames\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "transactionstorefile"
Transactional storage file for persisting data between transactions for the purposes of inferring information (such as corrective_change) on new data received\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$statedir/transactionstore\.yaml\fR
.
.IP "" 0
.
.SS "trusted_external_command"
The external trusted facts script or directory to use\. This setting\'s value can be set to the path to an executable command that can produce external trusted facts or to a directory containing those executable commands\. The command(s) must:
.
.IP "\(bu" 4
Take the name of a node as a command\-line argument\.
.
.IP "\(bu" 4
Return a JSON hash with the external trusted facts for this node\.
.
.IP "\(bu" 4
For unknown or invalid nodes, exit with a non\-zero exit code\.
.
.IP "" 0
.
.P
If the setting points to an executable command, then the external trusted facts will be stored in the \'external\' key of the trusted facts hash\. Otherwise for each executable file in the directory, the external trusted facts will be stored in the \fB<basename>\fR key of the \fBtrusted[\'external\']\fR hash\. For example, if the files foo\.rb and bar\.sh are in the directory, then \fBtrusted[\'external\']\fR will be the hash \fB{ \'foo\' => <foo\.rb output>, \'bar\' => <bar\.sh output> }\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: ``
.
.IP "" 0
.
.SS "trusted_oid_mapping_file"
File that provides mapping between custom SSL oids and user\-friendly names
.
.IP "\(bu" 4
\fIDefault\fR: \fB$confdir/custom_trusted_oid_mapping\.yaml\fR
.
.IP "" 0
.
.SS "use_cached_catalog"
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\. Because a Puppet agent using cached catalogs does not contact the primary server for a new catalog, it also does not upload facts at the beginning of the Puppet run\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "use_last_environment"
Puppet saves both the initial and converged environment in the last_run_summary file\. If they differ, and this setting is set to true, we will use the last converged environment and skip the node request\.
.
.P
When set to false, we will do the node request and ignore the environment data from the last_run_summary file\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "use_srv_records"
Whether the server will search for SRV records in DNS for the current domain\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.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\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "user"
The user Puppet Server will run as\. Used to ensure the agent side processes (agent, apply, etc) create files and directories readable by Puppet Server when necessary\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBpuppet\fR
.
.IP "" 0
.
.SS "vardir"
Where Puppet stores dynamic and growing data\. The default for this setting is calculated specially, like \fBconfdir\fR_\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBUnix/Linux: /opt/puppetlabs/puppet/cache \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\ecache \-\- Non\-root user: ~/\.puppetlabs/opt/puppet/cache\fR
.
.IP "" 0
.
.SS "vendormoduledir"
The directory containing \fBvendored\fR modules\. These modules will be used by \fIall\fR environments like those in the \fBbasemodulepath\fR\. The only difference is that modules in the \fBbasemodulepath\fR are pluginsynced, while vendored modules are not
.
.IP "\(bu" 4
\fIDefault\fR: \fB/opt/puppetlabs/puppet/vendor_modules\fR
.
.IP "" 0
.
.SS "versioned_environment_dirs"
Whether or not to look for versioned environment directories, symlinked from \fB$environmentpath/<environment>\fR\. This is an experimental feature and should be used with caution\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBfalse\fR
.
.IP "" 0
.
.SS "waitforcert"
How frequently puppet agent should ask for a signed certificate\.
.
.P
When starting for the first time, puppet agent will submit a certificate signing request (CSR) to the server named in the \fBca_server\fR setting (usually the primary Puppet server); this may be autosigned, or may need to be approved by a human, depending on the CA server\'s configuration\.
.
.P
Puppet agent cannot apply configurations until its approved certificate is available\. Since the certificate may or may not be available immediately, puppet agent will repeatedly try to fetch it at this interval\. You can turn off waiting for certificates by specifying a time of 0, or a maximum amount of time to wait in the \fBmaxwaitforcert\fR setting, in which case puppet agent will exit if it cannot get a cert\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB2m\fR
.
.IP "" 0
.
.SS "waitforlock"
How frequently puppet agent should try running when there is an already ongoing puppet agent instance\.
.
.P
This argument is by default disabled (value set to 0)\. In this case puppet agent will immediately exit if it cannot run at that moment\. When a value other than 0 is set, this can also be used in combination with the \fBmaxwaitforlock\fR argument\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB0\fR
.
.IP "" 0
.
.SS "write_catalog_summary"
Whether to write the \fBclassfile\fR and \fBresourcefile\fR after applying the catalog\. It is enabled by default, except when running \fBpuppet apply\fR\.
.
.IP "\(bu" 4
\fIDefault\fR: \fBtrue\fR
.
.IP "" 0
.
.SS "yamldir"
The directory in which YAML data is stored, usually in a subdirectory\.
.
.IP "\(bu" 4
\fIDefault\fR: \fB$vardir/yaml\fR
.
.IP "" 0
|