host资源简介
host资源主要用来管理操作系统的hosts功能,hosts是一个没有扩展名的系统文件,基本作用就是将一些常用的域名与其对应的IP地址建立一个关联的数据库。
1、host资源常用属性
host {‘资源标题‘:
host_aliases
ensure
ip
name
qtarget
}
◆ host_aliases:主机能有任意别名。
◆ ensure:确定该主机是否启用,present即启用,absent即关闭。
◆ ip:主机的IP地址,支持IPV4和IPV6。
◆ name:主机名。
◆ target:指定自定义host文件的位置。
给hosts添加一条解析,编辑/etc/puppet/manifests/hosts.pp
host {‘test.comratings.com‘:
ensure => present,
ip => ‘10.0.0.10‘,
}
然后在主机上面应用一下查看
# puppet apply hosts.pp
notice: /Stage[main]//Host[test.comratings.com]/ensure: created
notice: Finished catalog run in 0.02 seconds
查看/etc/hosts,发现已经追加了我们所需要的解析。
欢迎关注http://www.wzlinux.com:45 和http://www.wzlinux.com 。
时间: 2024-10-08 09:04:47