Puppet Class: wackopicko::install
- Defined in:
- manifests/install.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/install.pp', line 1
class wackopicko::install {
include git
include php::apache2
include mysql::server
vcsrepo { '/var/www/wackopicko':
ensure => present,
provider => git,
source => 'git://github.com/adamdoupe/WackoPicko.git',
require => Class['git'],
}
}
|