From 25035f96d2cd0621194a4133cf2c828bcc3ccd64 Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Thu, 30 Nov 2023 15:21:15 -0500 Subject: [PATCH] document multi-line strings This fixes #145 - though I don't know where else we can call it out when centers upgrade this puppet module. --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 02f5b1d..cf21c0e 100644 --- a/README.md +++ b/README.md @@ -171,9 +171,14 @@ openondemand::clusters: job_version: '6.0.1' batch_connect: basic: - script_wrapper: 'module restore\n%s' + script_wrapper: | + module restore + %s vnc: - script_wrapper: 'module restore\nmodule load ondemand-vnc\n%s' + script_wrapper: | + module restore + module load ondemand-vnc + %s ``` Define a Linux Host Adapter cluster: @@ -199,7 +204,10 @@ openondemand::clusters: job_tmux_bin: /usr/bin/tmux batch_connect: vnc: - script_wrapper: 'module restore\nmodule load ondemand-vnc\n%s' + script_wrapper: | + module restore + module load ondemand-vnc + %s ``` Define a Kubernetes cluster: