Puppet Class: storm::webdav::install

Defined in:
manifests/webdav/install.pp

Summary

StoRM WebDAV install class

Overview



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/webdav/install.pp', line 3

class storm::webdav::install (

) {
  package { 'storm-webdav':
    ensure  => '>=1.4.2',
  }
  if $storm::webdav::scitags_enabled {
    $el = $facts['os']['distro']['release']['major']
    yumrepo { 'scitags-repo':
      ensure   => present,
      descr    => 'SciTags stable repo',
      enabled  => 1,
      gpgcheck => 0,
      baseurl  => "https://linuxsoft.cern.ch/repos/scitags${el}al-stable/x86_64/os/",
    }
    package { 'python3-scitags':
      ensure  => 'installed',
      require => Yumrepo['scitags-repo'],
    }
  }
}