From 5b3080dd0d1935cb5d34bafc16b00e96642efbf9 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 16 Jul 2020 10:21:38 -0700 Subject: [PATCH] download: change /mnt/koji/compose mount on download servers Turns out odcs uses links to /mnt/koji for all it's packages. This means we need to have /mnt/koji on the download servers for the odcs composes to work right. Additionally, somehow /srv/odcs was mode 770 and apache couldn't read it. I changed it to 775, will need to make sure this doesn't cause any issues. Signed-off-by: Kevin Fenzi --- playbooks/groups/download.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/groups/download.yml b/playbooks/groups/download.yml index 23628b1553..c83b178a0e 100644 --- a/playbooks/groups/download.yml +++ b/playbooks/groups/download.yml @@ -37,7 +37,7 @@ - download - rsyncd - { role: nfs/client, when: datacenter == "iad2" or datacenter == "rdu", mnt_dir: '/srv/pub', nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub' } - - { role: nfs/client, when: datacenter == "iad2", mnt_dir: '/mnt/koji/compose', nfs_src_dir: 'fedora_koji/koji/compose' } # needed for internal sync + - { role: nfs/client, when: datacenter == "iad2", mnt_dir: '/mnt/koji', nfs_src_dir: 'fedora_koji/koji/' } # needed for internal sync and odcs - { role: nfs/client, when: datacenter == "iad2", mnt_dir: '/srv/odcs', nfs_src_dir: 'fedora_odcs' } # needed for internal sync - sudo - { role: openvpn/client, when: vpn == True }