Fix zuul-executor afs check

This value needs to be quoted in order for the YAML parser to
read it properly.

Change-Id: I07b0a1d2329b460163bcc2dffedba95149eb1127
This commit is contained in:
James E. Blair
2025-07-19 08:05:07 -07:00
parent 51ffad5cd3
commit 94d80a9ec1

View File

@@ -30,7 +30,7 @@
- name: Wait for AFS to be mounted before starting executors
command: 'mount -t afs'
register: mount_output
until: 'AFS on /afs type afs' in mount_output.stdout
until: "'AFS on /afs type afs' in mount_output.stdout"
# Booting servers can sometimes be slow. Give AFS 5 minutes
retries: 60
delay: 5