Skip to content

Commit f5aefb1

Browse files
committed
revert PR 635 - prevents site.yml contining on first boot
1 parent 9ca2d7f commit f5aefb1

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

ansible/roles/compute_init/files/compute-init.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,6 @@
6262
group: root
6363
mode: u=rX,g=rwX,o=
6464

65-
- name: Wait for NFS to reachable (checks host network up)
66-
ansible.builtin.wait_for:
67-
port: 2049
68-
host: '{{ server_node_ip }}'
69-
timeout: 120
70-
7165
- name: Mount /mnt/cluster
7266
mount:
7367
path: /mnt/cluster
@@ -76,6 +70,9 @@
7670
opts: ro,sync
7771
state: mounted
7872
register: _mount_mnt_cluster
73+
ignore_errors: true
74+
# exits from playbook if this failed below, allowing ansible-init to
75+
# finish, which allows site.yml to continue on initial deploy
7976

8077
- block:
8178
- name: Report skipping initialization if cannot mount nfs

0 commit comments

Comments
 (0)