aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/repository.pp
blob: dda90eb2c7573a407ce781ca30c9a4f68ba2ae07 (plain)
1
2
3
4
5
6
7
8
9
10
11
class buildsystem::repository {
    include buildsystem::var::repository
    file { [ $buildsystem::var::repository::bootstrap_root,
             $buildsystem::var::repository::bootstrap_reporoot ] :
        ensure => directory,
    }

    apache::vhost::other_app { $buildsystem::var::repository::hostname:
        vhost_file => 'buildsystem/vhost_repository.conf',
    }
}