- 论坛徽章:
- 0
|
本帖最后由 SlowLaris 于 2016-01-26 11:07 编辑
# puppet -V
3.8.4
server和client各一台虚机,主机名已配置
------------------------------------------------------------------------------------
server:
------------------------------------------------------------------------------------
# more modules/test/manifests/init.pp
class test {
file { "/tmp/$hostname.txt": content => "Hello World!"; }
}
# more modules/test/templates/test.erb
hostname <%= fqdn %>
# more manifests/site.pp
Exec { path => "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/sbin:/bin"}
$fileserver = "server.puppet.com"
$ntpserver = "pool.ntp.org"
Package { provider => "yum" }
node 'client.puppet.com' {
include test
}
# more manifests/nodes/client.puppet.com.pp
node 'client.puppet.com' {
include test
}
------------------------------------------------------------------------------------
client:
------------------------------------------------------------------------------------
配置文件和报错如下:
另外,这个版本已经不支持import了,不知道该怎么处理。 |
-
3.png
(32.37 KB, 下载次数: 68)
-
5.png
(14.14 KB, 下载次数: 68)
|