Puppet Class: beegfs::storage::install

Defined in:
manifests/storage/install.pp

Overview



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'manifests/storage/install.pp', line 2

class beegfs::storage::install {

  if $beegfs::storage_service_autorestart {
    $storage_notify = Service['beegfs-storage']
  } else {
    $storage_notify = undef
  }

  package { 'beegfs-storage':
    ensure => $beegfs::version,
    name   => $beegfs::storage_package,
    notify => $storage_notify,
  }

}