Puppet Class: role::insetup_noferm

Defined in:
modules/role/manifests/insetup_noferm.pp

Overview

Class: role::insetup_noferm

Role to be applied for a server during initial setup, before it's passed to the server owner for the actual application of the production role This is a variant for the setup of a service which will not use profile::firewall when moved to full production



7
8
9
10
11
12
13
14
15
# File 'modules/role/manifests/insetup_noferm.pp', line 7

class role::insetup_noferm {

    system::role { 'insetup_noferm':
        ensure      => 'present',
        description => 'Host being setup for later application of a role (no ferm)',
    }

    include profile::base::production
}