Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
**BUG FIXES**
- Remove usage of cfn-init for compute node bootstrapping to reduce node scale up time.
- Fix the execution of overriding aws-parallelcluster-node package only on the head node during update.
- Fix an issue where containerized jobs executed through Pyxis/Enroot in a multi-user environment (integrated with Active Directory) would fail.

3.12.0
------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ENROOT_LIBRARY_PATH /usr/lib/enroot
#ENROOT_SYSCONF_PATH /etc/enroot
ENROOT_RUNTIME_PATH <%= node['cluster']['enroot']['temporary_dir'] %>/runtime/user-$(id -u)
ENROOT_DATA_PATH <%= node['cluster']['enroot']['temporary_dir'] %>/data/user-$(id -u)
ENROOT_CONFIG_PATH <%= node['cluster']['enroot']['persistent_dir'] %>/config/user-$(id -u)
ENROOT_CACHE_PATH <%= node['cluster']['enroot']['persistent_dir'] %>/cache/group-$(id -g)
ENROOT_RUNTIME_PATH <%= node['cluster']['enroot']['temporary_dir'] %>/user-$(id -u)/runtime
ENROOT_DATA_PATH <%= node['cluster']['enroot']['temporary_dir'] %>/user-$(id -u)/data
ENROOT_CONFIG_PATH <%= node['cluster']['enroot']['persistent_dir'] %>/user-$(id -u)/config
ENROOT_CACHE_PATH <%= node['cluster']['enroot']['persistent_dir'] %>/user-$(id -u)/cache
#ENROOT_TEMP_PATH ${TMPDIR:-/tmp}

# Gzip program used to uncompress digest layers.
Expand Down
Loading