Puppet Class: r_profile::linux::package_manager

Defined in:
manifests/linux/package_manager.pp

Overview

R_profile::Linux::Package_manager

Configure a linux package manager



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/linux/package_manager.pp', line 4

class r_profile::linux::package_manager {
  case $osfamily {
    "RedHat": {
      include r_profile::linux::yum
    }
    "Debian": {
      include r_profile::linux::apt
    }
    default: {
      notify { "No support for setting up package manager on ${osfamily}": }
    }
  }


}