Resource : Imagine a system’s configuration as a collection of many independent atomic units; call them“resources.”
- 한글로 번역하려니 .. 뜻이 애매..........
user account/file/directory/package/service/cron_job 등등...chef의 resource와 비슷한 개념인것 같다.
puppet의 resource는 resource type / title / attributes / value 4가지로 구성
실 예로)
#puppet resource service
service { 'sshd':
ensure => 'running',
enable => 'true',
}
service { 'start-ttys':
ensure => 'stopped',
enable => 'true',
}
$puppet resource user
user { 'puppet':
ensure => 'present',
comment => 'Puppet',
gid => '52',
home => '/var/lib/puppet',
password => '!!',
password_max_age => '-1',
password_min_age => '-1',
shell => '/sbin/nologin',
uid => '52',
}
'나만의 Cloud' 카테고리의 다른 글
ansible 설치 및 기본 구성 (0) | 2015.08.21 |
---|---|
Virtual box Vagrant (0) | 2015.07.09 |
[puppet] puppet 설치 (0) | 2014.05.14 |
[chef] chef 참고자료 (0) | 2014.04.28 |
[git] git란? (0) | 2014.04.23 |