From a84f9aa8560612949d21b863fb7106724656de02 Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Wed, 4 Nov 2020 16:25:41 +0100 Subject: [PATCH] let's not forget our json commas missing comma made invalid json, which made most of the important tasks get skipped. --- roles/gitlab-runner/templates/gitlab_runner.fact | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/gitlab-runner/templates/gitlab_runner.fact b/roles/gitlab-runner/templates/gitlab_runner.fact index de9706c..d67fb3a 100644 --- a/roles/gitlab-runner/templates/gitlab_runner.fact +++ b/roles/gitlab-runner/templates/gitlab_runner.fact @@ -1,6 +1,6 @@ { "registration_token": "{{ ansible_local.gitlab_runner.registration_token }}", "runner_token": "{{ runner_token.content | from_json | json_query('token') }}", - "gitlab_domain": "{{ ansible_local.gitlab_runner.gitlab_domain }}" + "gitlab_domain": "{{ ansible_local.gitlab_runner.gitlab_domain }}", "executor": "{{ ansible_local.gitlab_runner.executor }}" }