Skip to content

Commit

Permalink
add rsync to stagingyum
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni authored and ekohl committed Aug 31, 2023
1 parent 72467ce commit f7efa63
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions puppet/modules/profiles/manifests/web.pp
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,8 @@
}
contain web::vhost::yum

class { 'web::vhost::stagingyum':
rsync_max_connections => $rsync_max_connections,
}
contain web::vhost::stagingyum
}
12 changes: 12 additions & 0 deletions puppet/modules/web/manifests/vhost/stagingyum.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Stdlib::Absolutepath $yum_directory = '/var/www/vhosts/stagingyum/htdocs',
String $user = 'yumrepostage',
Stdlib::Absolutepath $home = "/home/${user}",
Integer[0] $rsync_max_connections = 5,
) {
$yum_directory_config = [
{
Expand Down Expand Up @@ -44,6 +45,17 @@
directories => $yum_directory_config,
}

include rsync::server
rsync::server::module { 'stagingyum':
path => $yum_directory,
list => true,
read_only => true,
comment => $servername,
uid => 'nobody',
gid => 'nobody',
max_connections => $rsync_max_connections,
}

['HEADER.html', 'robots.txt'].each |$filename| {
file { "${yum_directory}/${filename}":
ensure => file,
Expand Down

0 comments on commit f7efa63

Please sign in to comment.