[[Puppet]]

*準備 [#p8454ad9]
 $ mkdir -p apache/template
 $ cd apache
 $ echo "Hello World!" > template/index.html
 $ vim apache.pp

*Manifest [#g707e120]
 $packages = [
  'httpd',
  'httpd-devel',
 ]
 
 package {$packages:
  ensure => installed,
 }
 
 service {"httpd":
  enable => true,
  ensure => running,
  hasrestart => true,
  require => Package[$packages],
 }
 
 file {'/var/www/html/index.html':
  ensure => present,
  owner => 'apache',
  group => 'apache',
  mode => '0644',
  content => template('index.html'),
  require => Package[$packages],
 }

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS