diff options
author | Jani Välimaa <wally@mageia.org> | 2024-05-03 22:05:47 +0300 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2024-05-03 22:05:47 +0300 |
commit | 29b6ad65888ab133a0ec02ae1114f28149ab9efc (patch) | |
tree | 5514959221aa807f4c5a2ccc59e89c2dceb19ee3 /modules | |
parent | 31a4b304acddcdb3463b36bb014c8244569d6d07 (diff) | |
download | puppet-29b6ad65888ab133a0ec02ae1114f28149ab9efc.tar puppet-29b6ad65888ab133a0ec02ae1114f28149ab9efc.tar.gz puppet-29b6ad65888ab133a0ec02ae1114f28149ab9efc.tar.bz2 puppet-29b6ad65888ab133a0ec02ae1114f28149ab9efc.tar.xz puppet-29b6ad65888ab133a0ec02ae1114f28149ab9efc.zip |
Ensure SRPMS dir is owned by schedbot
Diffstat (limited to 'modules')
-rw-r--r-- | modules/buildsystem/manifests/distros.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/buildsystem/manifests/distros.rb b/modules/buildsystem/manifests/distros.rb index 7661216e..a298c0a8 100644 --- a/modules/buildsystem/manifests/distros.rb +++ b/modules/buildsystem/manifests/distros.rb @@ -82,8 +82,8 @@ hostclass "buildsystem::distros" do # SRPMS srpmsdir = [ bootstrap_reporoot, rel, 'SRPMS' ].join('/') file srpmsdir, - :ensure => 'directory', :owner => mirror_user, - :group => mirror_user + :ensure => 'directory', :owner => schedbot_user, + :group => schedbot_user distro['medias'].each{|media, m| file [ srpmsdir, media ].join('/'), :ensure => 'directory', :owner => schedbot_user, :group => schedbot_user |