Changeset View
Changeset View
Standalone View
Standalone View
site-modules/profile/manifests/swh/deploy/worker/loader_svn.pp
# Deployment for swh-loader-svn | # Deployment for swh-loader-svn | ||||
class profile::swh::deploy::worker::loader_svn { | class profile::swh::deploy::worker::loader_svn { | ||||
$packages = ['python3-swh.loader.svn'] | $packages = ['python3-swh.loader.svn'] | ||||
$limit_no_file = lookup('swh::deploy::worker::loader_svn::limit_no_file') | $limit_no_file = lookup('swh::deploy::worker::loader_svn::limit_no_file') | ||||
$private_tmp = lookup('swh::deploy::worker::loader_svn::private_tmp') | $private_tmp = lookup('swh::deploy::worker::loader_svn::private_tmp') | ||||
package {$packages: | package {$packages: | ||||
ensure => 'latest', | ensure => 'present', | ||||
} | } | ||||
::profile::swh::deploy::worker::instance {'loader_svn': | ::profile::swh::deploy::worker::instance {'loader_svn': | ||||
ensure => present, | ensure => present, | ||||
limit_no_file => $limit_no_file, | limit_no_file => $limit_no_file, | ||||
private_tmp => $private_tmp, | private_tmp => $private_tmp, | ||||
require => [ | require => [ | ||||
Package[$packages], | Package[$packages], | ||||
], | ], | ||||
} | } | ||||
} | } |