Skip to content

v1.6.5

Compare
Choose a tag to compare
@martbhell martbhell released this 10 Oct 07:33
· 705 commits to master since this release

General Updates

Please remove the group: "csc" from the users in group_vars/all/root_keys.yml. Why? See #159

  - { name: cscluis, uid: 5001, group: csc, state: "present", groups: "{{admingroup}}", shell: "{{adminshell}}", pubkey: "ssh-rsa  KEY" }

should become:

  - { name: cscluis, uid: 5001, state: "present", groups: "{{admingroup}}", shell: "{{adminshell}}", pubkey: "ssh-rsa  KEY" }

CVMFS had a major rearrangement

On FGCI machines (This release will apply the necessary changes for you, however, if you have overwritten the corresponding ansible variable bash_modules_path, please make sure you update it to the new MODULEPATH string):

  • MODULEPATH should point to /cvmfs/fgi.csc.fi/modules/el7/all
  • MODULEPATH should NOT point to /cvmfs/fgi.csc.fi/modules/ or /cvmfs/fgi.csc.fi/modules/all

On FGI machines (A new FGI package will be produced soon with these changes):

  • MODULEPATH should point to /cvmfs/fgi.csc.fi/modules/sl6
  • MODULEPATH should NOT point to /cvmfs/fgi.csc.fi/modules/fgci or /cvmfs/fgi.csc.fi/modules/all

Meanwhile (just for FGI) you can change the following line manually in /etc/profile.d/modules-cvmfs.sh to:

export MODULEPATH=$MODULEPATH:/cvmfs/fgi.csc.fi/modules/sl6/

And in /etc/profile.d/modules-cvmfs.csh to:

setenv MODULEPATH "${MODULEPATH}:/cvmfs/fgi.csc.fi/modules/sl6/"

Some minor fixes may be needed in the near future. Please test your software and report any issue to [email protected]

Role Updates

  • cuda: install gpg keys for the yum repo 1
  • yum: disable yum update of * to latest in yum-role #160
  • fgci-bash: update MODULEPATH 2