Skip to content

Commit

Permalink
Turn on rstprod support by default on Orion
Browse files Browse the repository at this point in the history
- in setup scripts change rstprod variables setting for Orion to use rstprod policy
- set chgrp_rstprod to 'YES'
- set chgrp_cmd to 'chgrp rstprod'
- workflow jobs that use CHGRP_CMD will set file permissions to 'rstprod' where needed

Refs: NOAA-EMC#347
  • Loading branch information
KateFriedman-NOAA committed Aug 17, 2021
1 parent fda063d commit 81acac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ush/rocoto/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ def edit_baseconfig():
queue = 'batch'
queue_service = 'service'
partition_batch = 'orion'
chgrp_rstprod = 'NO'
chgrp_cmd = 'ls'
chgrp_rstprod = 'YES'
chgrp_cmd = 'chgrp rstprod'
hpssarch = 'NO'

if args.icsdir is not None and not os.path.exists(icsdir):
Expand Down
4 changes: 2 additions & 2 deletions ush/rocoto/setup_expt_fcstonly.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def edit_baseconfig():
queue = 'batch'
queue_service = 'service'
partition_batch = 'orion'
chgrp_rstprod = 'NO' # No rstprod on Orion
chgrp_cmd = 'ls'
chgrp_rstprod = 'YES'
chgrp_cmd = 'chgrp rstprod'
hpssarch = 'NO'

# COMROT directory
Expand Down

0 comments on commit 81acac3

Please sign in to comment.