From 4adfb4a2effc49ee2b4bbb44de0171acb853bd42 Mon Sep 17 00:00:00 2001 From: Gerald Pinder <4626052+gmpinder@users.noreply.github.com> Date: Sat, 17 May 2025 18:08:50 -0400 Subject: [PATCH] Fix location of env vars --- recipes/jp-minis-server.yml | 2 +- recipes/jp-minis-worker.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/jp-minis-server.yml b/recipes/jp-minis-server.yml index e8a86c9..a00869f 100644 --- a/recipes/jp-minis-server.yml +++ b/recipes/jp-minis-server.yml @@ -9,5 +9,5 @@ modules: - from-file: common/jp-minis.yml - type: script snippets: - - INSTALL_RKE2_SKIP_RELOAD=true curl -sfL https://get.rke2.io | sh + - curl -sfL https://get.rke2.io | INSTALL_RKE2_SKIP_RELOAD=true sh - from-file: common/post-build.yml diff --git a/recipes/jp-minis-worker.yml b/recipes/jp-minis-worker.yml index e4c377a..7c7b025 100644 --- a/recipes/jp-minis-worker.yml +++ b/recipes/jp-minis-worker.yml @@ -9,5 +9,5 @@ modules: - from-file: common/jp-minis.yml - type: script snippets: - - INSTALL_RKE2_TYPE=agent INSTALL_RKE2_SKIP_RELOAD=true curl -sfL https://get.rke2.io | sh + - curl -sfL https://get.rke2.io | INSTALL_RKE2_TYPE=agent INSTALL_RKE2_SKIP_RELOAD=true sh - from-file: common/post-build.yml