Puppet Class: psick::test
- Defined in:
- manifests/test.pp
Overview
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/test.pp', line 3
class psick::test {
# include site::web::nginx
package { 'git': }
::tp::install { 'apache': }
::tp::conf { 'apache::testlog':
base_dir => 'log',
content => '# test ',
}
::tp::conf { 'apache::testconf':
content => '# test ',
}
tp::dir { 'test':
path => '/opt/tp_self',
source => 'https://github.com/example42/puppet-tp/',
vcsrepo => 'git',
}
}
|