From 20981fe901d56cd59ca0d72dece1cf6a9bb6dc19 Mon Sep 17 00:00:00 2001 From: Alex Iribarren <Alex.Iribarren@cern.ch> Date: Wed, 26 Sep 2018 14:25:17 +0200 Subject: [PATCH] Fix types --- reposync.nomad | 2 +- reposync_oneshot.nomad | 2 +- reposync_scheduler.nomad | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reposync.nomad b/reposync.nomad index 96a287c..162d4ab 100644 --- a/reposync.nomad +++ b/reposync.nomad @@ -13,7 +13,7 @@ job "${JOB_PREFIX}reposync" { config { image = "https://gitlab-registry.cern.ch/linuxsupport/containers/reposync_test/do_reposync:${CI_COMMIT_REF_NAME}" - force_pull = "${FORCE_PULL}" + force_pull = ${FORCE_PULL} logging { type = "gelf" config { diff --git a/reposync_oneshot.nomad b/reposync_oneshot.nomad index 5da4bc0..940035c 100644 --- a/reposync_oneshot.nomad +++ b/reposync_oneshot.nomad @@ -12,7 +12,7 @@ job "${JOB_PREFIX}reposync_oneshot" { config { image = "https://gitlab-registry.cern.ch/linuxsupport/containers/reposync_test/reposync_scheduler:${CI_COMMIT_REF_NAME}" - force_pull = "${FORCE_PULL}" + force_pull = ${FORCE_PULL} logging { type = "gelf" config { diff --git a/reposync_scheduler.nomad b/reposync_scheduler.nomad index a1158ff..7968097 100644 --- a/reposync_scheduler.nomad +++ b/reposync_scheduler.nomad @@ -15,7 +15,7 @@ job "${JOB_PREFIX}reposync_scheduler" { config { image = "https://gitlab-registry.cern.ch/linuxsupport/containers/reposync_test/reposync_scheduler:${CI_COMMIT_REF_NAME}" - force_pull = "${FORCE_PULL}" + force_pull = ${FORCE_PULL} logging { type = "gelf" config { -- GitLab