Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/tests_archdetect_nvidia_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ jobs:
grep "Prepending /cvmfs/software.eessi.io/versions/${{matrix.EESSI_VERSION}}/software/linux/x86_64/amd/zen2/accel/nvidia/cc80/modules/all to \$MODULEPATH" init.out || (echo "FAILED 3" && exit 1)
fi

echo ">>> checking last line of init output..."
tail -1 init.out | grep "Environment set up to use EESSI (${{matrix.EESSI_VERSION}}), have fun!" || (echo "FAILED, full init utput:" && cat init.out && exit 1)
echo ">>> checking last lines of init output..."
tail -10 init.out | grep "Environment set up to use EESSI (${{matrix.EESSI_VERSION}}), have fun!" || (echo "FAILED, full init output:" && cat init.out && exit 1)

echo "All checks on init output PASSED"
else
Expand Down
1 change: 1 addition & 0 deletions init/bash
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,6 @@ if [ $? -eq 0 ]; then
#show_msg ""

echo "Environment set up to use EESSI (${EESSI_VERSION}), have fun!"
printf "*****\nPlease note that by configuring and using the EESSI software stack,\nyou agree to abide by the EESSI Terms of Use\n(see https://www.eessi.io/docs/governance/terms_of_use/).\n*****\n"

fi
7 changes: 7 additions & 0 deletions init/modules/EESSI/2023.06.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,11 @@ end

if mode() == "load" then
LmodMessage(load_message)
-- notify about ToU
tou_message = [[*****
Please note that by configuring and using the EESSI software stack,
you agree to abide by the EESSI Terms of Use
(see https://www.eessi.io/docs/governance/terms_of_use/).
*****]]
LmodMessage(tou_message)
end