我正在尝试在发出wget调用之前设置代理:
file { "/etc/environment":
content => inline_template("
http_proxy=http://10.0.12.13:8080
https_proxy=http://10.0.12.13:8080")
}
问题是我必须重新启动Puppet会话才能正确加载环境。
我还尝试在exec语句中导出变量:
exec { "proxy-export-vars":
provider => "shell",
command => "export http_proxy=http://10.0.12.13:8080 && export https_proxy=http://10.0.12.13:8080",
}
问题是 - 如何在不重启会话和木偶申请流程的情况下加载环境设置?
WGET puppet plugin正在使用the top scope variables搜索代理设置。所以诀窍是在the top scope中定义这些变量,即在节点定义之前。完整的工作代码:
$http_proxy = "http://10.0.12.13:8080"
$https_proxy = "http://10.0.12.13:8080"
node 'machine' {
# ...
}
从现在起,WGET puppet plugin将使用这些代理设置获取资源。
答案 0 :(得分:3)
为单个exec
资源设置环境变量的最简单方法是使用environment
属性。请参阅文档here。例如:
exec {'fetch something':
environment => [
'http_proxy=http://10.0.12.13:8080',
'https_proxy=http://10.0.12.13:8080',
],
command => '/usr/bin/wget -o /tmp/myfile http://myserver/myfile',
}
你的第二次尝试......
exec { "proxy-export-vars":
provider => "shell",
command => "export http_proxy=http://10.0.12.13:8080 && export https_proxy=http://10.0.12.13:8080",
...会失败,因为(a)export
是一个shell内置命令,所以
由于没有相应的,Puppet将无法exec
二进制...和(b)即使它可以,它也不会做你想要的,因为
设置这样的环境变量不是持久的 - 它只是
影响当前的过程及其子女。