Puppet Class: osg::configure

Defined in:
manifests/configure.pp

Summary

Manage osg-configure

Overview



3
4
5
6
7
8
9
10
11
12
# File 'manifests/configure.pp', line 3

class osg::configure {

  exec { 'osg-configure':
    path        => ['/usr/bin','/bin','/usr/sbin','/sbin'],
    command     => '/usr/sbin/osg-configure -c',
    onlyif      => ['test -f /usr/sbin/osg-configure'],
    refreshonly => true,
  }

}