We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110ecc5 commit d5171b2Copy full SHA for d5171b2
provision-contest/ansible/hosts.example
@@ -39,6 +39,10 @@ domjudge-analyst ansible_host=172.29.1.240
39
[online-domserver]
40
domjudge-aws ansible_host=0.0.0.0
41
42
+[emergency:children]
43
+wf46-emergency
44
+wf47-emergency
45
+
46
[judgehost:children]
47
wf46-judgehost
48
wf47-judgehost
provision-contest/ansible/roles/clusterssh/tasks/main.yml
@@ -12,7 +12,7 @@
12
become_user: domjudge
13
lineinfile:
14
dest: /home/domjudge/.clusterssh/clusters
15
- regexp: '^all'
+ regexp: '^all '
16
line: "all {{ groups['all'] | join(' ') }}"
17
create: true
18
mode: 0644
@@ -22,7 +22,7 @@
22
23
24
25
- regexp: '^{{ item }}s'
+ regexp: '^{{ item }}s '
26
line: "{{ item }}s {{ groups[item] | join(' ') }}"
27
28
0 commit comments