Puppet Class: osg::client::install

Defined in:
manifests/client/install.pp

Summary

Install OSG client

Overview



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

class osg::client::install {

  if $osg::client::with_condor {
    package { 'condor':
      ensure => 'present',
    }

    if $osg::client::with_condor_ce {
      Package['condor'] -> Package['htcondor-ce']
    }
  }

  if $osg::client::with_condor_ce {
    package { 'htcondor-ce':
      ensure => 'present',
    }
  }

}