From 0868ce0e5daa692f9ac141d503301a17927f332a Mon Sep 17 00:00:00 2001 From: Craig Gross Date: Fri, 4 Oct 2024 11:46:46 -0400 Subject: [PATCH] Clarify easystack entries with repeated options --- docs/easystack-files.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/easystack-files.md b/docs/easystack-files.md index 7eba69190..d4bfa3df2 100644 --- a/docs/easystack-files.md +++ b/docs/easystack-files.md @@ -107,6 +107,20 @@ easyconfigs: This is not recommended however, as short options are more difficult to interpret by humans. +If you use an option that can be set multiple times (namely `amend` and `try-amend`), +you can supply the various values as a list under that option. +For example, to set various site customization easyconfig parameters for a MATLAB without editing the easyconfig, one can use: + +``` yaml +easyconfigs: + - MATLAB-2023a.eb: + options: + try-amend: + - license_server=hostname + - license_server_port=12345 + - key=abc-123 +``` + ## Combining command line options with options in an easystack file {: #easystack_combining_options }