From 8d9b77ba5fdb3679ffb0ce7a145be09e430430b5 Mon Sep 17 00:00:00 2001 From: Markus van DIjk <12894423+markus-sara@users.noreply.github.com> Date: Thu, 17 Mar 2022 14:39:26 +0100 Subject: [PATCH] corrected typo in run-nomad, bad keyword in generation of systemd config The generated systemd config contained "ConditionalFileNotEmpty" in the [Unit], should be "ConditionFileNotEmpty". --- modules/run-nomad/run-nomad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/run-nomad/run-nomad b/modules/run-nomad/run-nomad index b490d5a..33fd3d4 100755 --- a/modules/run-nomad/run-nomad +++ b/modules/run-nomad/run-nomad @@ -211,7 +211,7 @@ Description="HashiCorp Nomad" Documentation=https://www.nomadproject.io/ Requires=network-online.target After=network-online.target -ConditionalFileNotEmpty=$config_path +ConditionFileNotEmpty=$config_path EOF )