@@ -71,13 +71,19 @@ With the newly created conda environment activated, run the ``cset
7171extract-workflow `` command to unpack the workflow from inside the CSET package
7272into a directory of your choosing. A sensible choice is ``~/cylc-src ``, which is
7373the default location where cylc will search for workflows.
74+ If you are at a Momentum® Partnership site with restricted site specific files
75+ you should also include the ``--restricted `` flag to install them.
7476
7577.. code-block :: bash
7678
7779 # Create the cylc-src directory if it doesn't exist.
7880 mkdir -p ~ /cylc-src
81+
7982 # Extract the workflow from CSET into the chosen directory.
8083 cset extract-workflow ~ /cylc-src
84+ # Alternatively install the restricted site-specific files at Momentum sites.
85+ # cset extract-workflow --restricted ~/cylc-src
86+
8187 # Change into the freshly unpacked workflow directory.
8288 cd ~ /cylc-src/cset-workflow-vX.Y.Z
8389
@@ -86,18 +92,19 @@ Your directory should look like this:
8692.. code-block :: bash
8793
8894 $ ls
89- app conda-environment includes lib opt rose-suite.conf.example
90- bin flow.cylc install_restricted_files.sh meta README.md site
95+ app conda-environment includes meta README.md site
96+ bin flow.cylc lib opt rose-suite.conf.example
9197
9298 If you are at a site with specific CSET integration, such as the Met Office or
93- Momentum Partnership, you will want to install the site specific configuration
99+ Momentum Partnership, and did not use the ``--restricted `` option to ``cset
100+ extract-workflow `` you will want to install the site specific configuration
94101files that specify where cylc will run the tasks. This is done by running the
95- ``install_restricted_files.sh `` script . For other users, you can skip this step
96- and use the ``localhost `` site instead.
102+ ``cset install-restricted-files `` command . For other users, you can skip this
103+ step and use the ``localhost `` site instead.
97104
98105.. code-block :: bash
99106
100- ./install_restricted_files.sh
107+ cset install-restricted-files /path/to/workflow
101108
102109 You have now installed the CSET workflow and are ready to use it.
103110
0 commit comments