From 0eaef83e2696c81ff6551faefe5e2281a7a668ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Sch=C3=BCller?= Date: Wed, 23 Jul 2025 15:03:28 +0200 Subject: [PATCH] templates/packer: avoid errors in worker-executor startup When the worker executor starts up, many error messages and warnings are shown in the system logs, worker-initialization.service should actually not run at all. The service crashes and functionally that's fine, but it just messes up the log, raises questions and can be avoided by just not running it. --- .../ansible/roles/common/files/worker-initialization.service | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/packer/ansible/roles/common/files/worker-initialization.service b/templates/packer/ansible/roles/common/files/worker-initialization.service index 439d76e8e..a988af61c 100644 --- a/templates/packer/ansible/roles/common/files/worker-initialization.service +++ b/templates/packer/ansible/roles/common/files/worker-initialization.service @@ -1,6 +1,7 @@ [Unit] Description=Worker Initialization Service ConditionPathExists=!/etc/worker-first-boot +ConditionPathExists=!/tmp/worker-run-executor-service Wants=cloud-final.service After=cloud-final.service