You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: manifests/agent.pp
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@
27
27
# ['templatedir'] - Template dir, if unset it will remove the setting.
28
28
# ['configtimeout'] - How long the client should wait for the configuration to be retrieved before considering it a failure
29
29
# ['stringify_facts'] - Wether puppet transforms structured facts in strings or no. Defaults to true in puppet < 4, deprecated in puppet >=4 (and will default to false)
30
+
# ['http_proxy_host'] - The hostname of an HTTP proxy to use for agent -> master connections
31
+
# ['http_proxy_port'] - The port to use when puppet uses an HTTP proxy
30
32
#
31
33
# Actions:
32
34
# - Install and configures the puppet agent
@@ -76,6 +78,8 @@
76
78
$agent_noop = undef,
77
79
$usecacheonfailure = undef,
78
80
$certname = undef,
81
+
$http_proxy_host = undef,
82
+
$http_proxy_port = undef,
79
83
) inheritspuppet::params {
80
84
81
85
if ! defined(User[$::puppet::params::puppet_user]) {
0 commit comments