From bdb2d1d212a2ae5d26f2a7554c7a0e6c714de2f4 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 16 Jun 2020 15:35:30 -0700 Subject: [PATCH] buildvm: Try and fix s390x sshfs mounts Because of the when we had here before it would try and do a nfs mount on the runroot s390x builders, but that will completely fail, as they are not in the same datacenter. Instead try and exclude them here so they can get the sshfs mount later. Signed-off-by: Kevin Fenzi --- playbooks/groups/buildvm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/groups/buildvm.yml b/playbooks/groups/buildvm.yml index 2bea69ccd6..3c91668bb8 100644 --- a/playbooks/groups/buildvm.yml +++ b/playbooks/groups/buildvm.yml @@ -26,7 +26,7 @@ role: nfs/client, mnt_dir: "/mnt/fedora_koji", nfs_src_dir: "{{ koji_hub_nfs }}", - when: "env == 'staging' or createrepo or 'runroot' in group_names", + when: "env == 'staging' or createrepo or 'runroot' in group_names and not inventory_hostname.startswith('buildvm-s390x')", } - role: nfs/client mnt_dir: '/mnt/koji/ostree'