Puppet Class: openshift_origin::role
- Inherited by:
-
openshift_origin::role::node
openshift_origin::role::broker
openshift_origin::role::datastore
openshift_origin::role::msgserver
openshift_origin::role::nameserver
openshift_origin::role::load_balancer
- Defined in:
- manifests/role.pp
Overview
Copyright 2013 Mojo Lingo LLC. Modifications by Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'manifests/role.pp', line 16
class openshift_origin::role {
require openshift_origin::install_method
require openshift_origin::firewall::ssh
if ( $::openshift_origin::configure_ntp ) {
package { 'ntpdate':
ensure => 'present',
}
class { 'ntp':
servers => $::openshift_origin::ntp_servers,
}
}
}
|