From b719284919ae343abdd412f7866f363d7ff47cf3 Mon Sep 17 00:00:00 2001 From: Jafaruddin Lie <jafar.lie@monash.edu> Date: Tue, 21 Mar 2017 15:19:11 +1100 Subject: [PATCH] changed zz_modulecmd to modulecmd, so the list of custom modules load properly Former-commit-id: 6efcad21376b6248b0bfb4efb44dc88d5f69c6cc --- roles/enable_modules/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/enable_modules/tasks/main.yml b/roles/enable_modules/tasks/main.yml index f7d6e4ad..3ae936b3 100644 --- a/roles/enable_modules/tasks/main.yml +++ b/roles/enable_modules/tasks/main.yml @@ -25,13 +25,13 @@ when: default_modules == "lmod" - name: template modulecmd bash - template: src=modulecmd.sh.j2 dest=/etc/profile.d/zz_modulecmd.sh + template: src=modulecmd.sh.j2 dest=/etc/profile.d/modulecmd.sh become: true become_user: root when: default_modules == "modulecmd" - name: template modulecmd csh - template: src=modulecmd.csh.j2 dest=/etc/profile.d/zz_modulecmd.csh + template: src=modulecmd.csh.j2 dest=/etc/profile.d/modulecmd.csh become: true become_user: root when: default_modules == "modulecmd" -- GitLab