Skip to content

Commit

Permalink
document multi-line strings (#146)
Browse files Browse the repository at this point in the history
This fixes #145 - though I don't know where else we can call it out when centers upgrade this puppet module.
  • Loading branch information
johrstrom authored Dec 1, 2023
1 parent 08101d3 commit 7ec2c79
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 7ec2c79

Please sign in to comment.