Puppet Class: ferm::install
- Defined in:
 - manifests/install.pp
 
Overview
This class handles the configuration file. Avoid modifying private classes.
        3 4 5 6 7 8 9 10 11  | 
      
        # File 'manifests/install.pp', line 3
class ferm::install {
  # this is a private class
  assert_private("You're not supposed to do that!")
  package{'ferm':
    ensure => 'latest',
  }
}
       |