Puppet Class: profile::openstack::base::puppetmaster::common
- Defined in:
- modules/profile/manifests/openstack/base/puppetmaster/common.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'modules/profile/manifests/openstack/base/puppetmaster/common.pp', line 2
class profile::openstack::base::puppetmaster::common () {
include profile::openstack::base::puppetmaster::enc_client
# Update Puppet git repositories
class { 'puppetmaster::gitsync':
run_every_minutes => 1,
}
ferm::service { 'puppetmaster':
proto => 'tcp',
port => '8141',
srange => '$LABS_NETWORKS',
}
}
|