├── .gitignore ├── LICENSE ├── Readme.md ├── ansible.cfg ├── group_vars ├── all.yml ├── cnodes.yml ├── devnodes.yml └── sms.yml ├── host_vars ├── c1.yml └── c2.yml ├── inventory └── hosts ├── roles ├── EasyBuild │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── R │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── autotools │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── booting-computing-nodes │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── clustershell │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── common │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── compiler-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── compiler-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── compiler-llvm │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── conman │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── dhcpd │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── dhcpd.conf.j2 │ └── vars │ │ └── main.yml ├── final │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml ├── ganglia │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── genders │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── helloworld │ ├── defaults │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── hwloc │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── imb │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── impi-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── ipmisol │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── kernel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── lmod │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── lustre-client │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── mpich-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── mpich-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── mrsh │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── mvapich2-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── mvapich2-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── nagios │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── net-eth │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ ├── ifcfg-ethN-cnode │ │ └── ifcfg-ethN-sms │ └── vars │ │ └── main.yml ├── net-ib │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── net-infinipath │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── nfs │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── ntp │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── ohpc-base │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── openmpi-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── openmpi-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── openmpi3-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── perf-tools-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── perf-tools-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── rsyslog │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── slurm-client │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── slurm-server │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── spack │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── test-suite-ohpc │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── configure.sh.j2 ├── third-party-libs-gnu │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── third-party-libs-intel │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── valgrind │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml ├── warewulf-final │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── template.j2 │ └── vars │ │ └── main.yml └── warewulf-init │ ├── defaults │ └── main.yml │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yml │ ├── templates │ └── template.j2 │ └── vars │ └── main.yml ├── run_testsuite.yml ├── scripts ├── check.sh ├── mknewrole.sh └── run.sh └── site.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/Readme.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/ansible.cfg -------------------------------------------------------------------------------- /group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/group_vars/all.yml -------------------------------------------------------------------------------- /group_vars/cnodes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /group_vars/devnodes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /group_vars/sms.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | 4 | -------------------------------------------------------------------------------- /host_vars/c1.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /host_vars/c2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/inventory/hosts -------------------------------------------------------------------------------- /roles/EasyBuild/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/EasyBuild/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/EasyBuild/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/EasyBuild/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/EasyBuild/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/EasyBuild/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/EasyBuild/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/EasyBuild/tasks/main.yml -------------------------------------------------------------------------------- /roles/EasyBuild/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/EasyBuild/templates/template.j2 -------------------------------------------------------------------------------- /roles/EasyBuild/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/EasyBuild/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/R/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/R/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/R/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/R/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/R/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/R/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/R/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/R/tasks/main.yml -------------------------------------------------------------------------------- /roles/R/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/R/templates/template.j2 -------------------------------------------------------------------------------- /roles/R/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/R/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/autotools/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/autotools/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/autotools/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/autotools/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/autotools/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/autotools/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/autotools/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/autotools/tasks/main.yml -------------------------------------------------------------------------------- /roles/autotools/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/autotools/templates/template.j2 -------------------------------------------------------------------------------- /roles/autotools/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/autotools/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/booting-computing-nodes/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/defaults/main.yml -------------------------------------------------------------------------------- /roles/booting-computing-nodes/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/handlers/main.yml -------------------------------------------------------------------------------- /roles/booting-computing-nodes/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/meta/main.yml -------------------------------------------------------------------------------- /roles/booting-computing-nodes/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/tasks/main.yml -------------------------------------------------------------------------------- /roles/booting-computing-nodes/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/templates/template.j2 -------------------------------------------------------------------------------- /roles/booting-computing-nodes/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/booting-computing-nodes/vars/main.yml -------------------------------------------------------------------------------- /roles/clustershell/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/clustershell/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/clustershell/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/clustershell/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/clustershell/tasks/main.yml -------------------------------------------------------------------------------- /roles/clustershell/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/clustershell/templates/template.j2 -------------------------------------------------------------------------------- /roles/clustershell/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/common/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/common/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/common/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/common/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/common/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/common/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/common/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/common/tasks/main.yml -------------------------------------------------------------------------------- /roles/common/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/common/templates/template.j2 -------------------------------------------------------------------------------- /roles/common/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/common/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-gnu/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-gnu/handlers/main.yml -------------------------------------------------------------------------------- /roles/compiler-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/compiler-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/compiler-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-intel/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-intel/handlers/main.yml -------------------------------------------------------------------------------- /roles/compiler-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/compiler-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/compiler-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-llvm/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-llvm4/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-llvm/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-llvm/handlers/main.yml -------------------------------------------------------------------------------- /roles/compiler-llvm/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-llvm4/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/compiler-llvm/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-llvm/tasks/main.yml -------------------------------------------------------------------------------- /roles/compiler-llvm/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/compiler-llvm/templates/template.j2 -------------------------------------------------------------------------------- /roles/compiler-llvm/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/compiler-llvm4/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/conman/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/conman/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/conman/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/conman/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/conman/tasks/main.yml -------------------------------------------------------------------------------- /roles/conman/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/conman/templates/template.j2 -------------------------------------------------------------------------------- /roles/conman/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/dhcpd/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/dhcpd/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/dhcpd/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/dhcpd/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/dhcpd/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/dhcpd/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/dhcpd/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/dhcpd/tasks/main.yml -------------------------------------------------------------------------------- /roles/dhcpd/templates/dhcpd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/dhcpd/templates/dhcpd.conf.j2 -------------------------------------------------------------------------------- /roles/dhcpd/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/dhcpd/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/final/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/final/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/final/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/final/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/final/tasks/main.yml -------------------------------------------------------------------------------- /roles/final/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ganglia/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ganglia/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ganglia/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ganglia/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ganglia/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ganglia/meta/main.yml -------------------------------------------------------------------------------- /roles/ganglia/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ganglia/tasks/main.yml -------------------------------------------------------------------------------- /roles/ganglia/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ganglia/templates/template.j2 -------------------------------------------------------------------------------- /roles/ganglia/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ganglia/vars/main.yml -------------------------------------------------------------------------------- /roles/genders/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/genders/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/genders/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/genders/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/genders/tasks/main.yml -------------------------------------------------------------------------------- /roles/genders/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/genders/templates/template.j2 -------------------------------------------------------------------------------- /roles/genders/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/helloworld/defaults/main.yml: -------------------------------------------------------------------------------- 1 | enable_helloworld: False 2 | -------------------------------------------------------------------------------- /roles/helloworld/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/helloworld/tasks/main.yml -------------------------------------------------------------------------------- /roles/hwloc/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/hwloc/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/hwloc/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/hwloc/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/hwloc/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/hwloc/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/hwloc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/hwloc/tasks/main.yml -------------------------------------------------------------------------------- /roles/hwloc/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/hwloc/templates/template.j2 -------------------------------------------------------------------------------- /roles/hwloc/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/hwloc/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/imb/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/imb/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/imb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/imb/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/imb/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/imb/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/imb/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/imb/tasks/main.yml -------------------------------------------------------------------------------- /roles/imb/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/imb/templates/template.j2 -------------------------------------------------------------------------------- /roles/imb/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/imb/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/impi-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/impi-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/impi-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/impi-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/impi-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/impi-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/impi-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/impi-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/impi-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/impi-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/impi-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/impi-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ipmisol/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ipmisol/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ipmisol/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ipmisol/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ipmisol/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ipmisol/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ipmisol/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ipmisol/tasks/main.yml -------------------------------------------------------------------------------- /roles/ipmisol/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ipmisol/templates/template.j2 -------------------------------------------------------------------------------- /roles/ipmisol/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ipmisol/vars/main.yml -------------------------------------------------------------------------------- /roles/kernel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/kernel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/kernel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/kernel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/kernel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/kernel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/kernel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/kernel/tasks/main.yml -------------------------------------------------------------------------------- /roles/kernel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/kernel/templates/template.j2 -------------------------------------------------------------------------------- /roles/kernel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/kernel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lmod/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lmod/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lmod/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lmod/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lmod/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lmod/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lmod/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lmod/tasks/main.yml -------------------------------------------------------------------------------- /roles/lmod/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lmod/templates/template.j2 -------------------------------------------------------------------------------- /roles/lmod/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lmod/vars/main.yml -------------------------------------------------------------------------------- /roles/lustre-client/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lustre-client/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lustre-client/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lustre-client/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lustre-client/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/lustre-client/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/lustre-client/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lustre-client/tasks/main.yml -------------------------------------------------------------------------------- /roles/lustre-client/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lustre-client/templates/template.j2 -------------------------------------------------------------------------------- /roles/lustre-client/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/lustre-client/vars/main.yml -------------------------------------------------------------------------------- /roles/mpich-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mpich-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/mpich-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mpich-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/mpich-gnu/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mpich-gnu/vars/main.yml -------------------------------------------------------------------------------- /roles/mpich-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mpich-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mpich-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/mpich-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mpich-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/mpich-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mpich-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mrsh/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mrsh/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mrsh/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mrsh/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mrsh/tasks/main.yml -------------------------------------------------------------------------------- /roles/mrsh/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mrsh/templates/template.j2 -------------------------------------------------------------------------------- /roles/mrsh/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mvapich2-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/mvapich2-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mvapich2-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/mvapich2-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/mvapich2-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mvapich2-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/mvapich2-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/mvapich2-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/mvapich2-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/mvapich2-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nagios/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nagios/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nagios/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nagios/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nagios/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nagios/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nagios/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/nagios/tasks/main.yml -------------------------------------------------------------------------------- /roles/nagios/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/nagios/templates/template.j2 -------------------------------------------------------------------------------- /roles/nagios/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nagios/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-eth/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-eth/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-eth/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-eth/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-eth/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-eth/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-eth/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-eth/tasks/main.yml -------------------------------------------------------------------------------- /roles/net-eth/templates/ifcfg-ethN-cnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-eth/templates/ifcfg-ethN-cnode -------------------------------------------------------------------------------- /roles/net-eth/templates/ifcfg-ethN-sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-eth/templates/ifcfg-ethN-sms -------------------------------------------------------------------------------- /roles/net-eth/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-eth/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-ib/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-ib/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-ib/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-ib/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-ib/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-ib/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-ib/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-ib/tasks/main.yml -------------------------------------------------------------------------------- /roles/net-ib/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-ib/templates/template.j2 -------------------------------------------------------------------------------- /roles/net-ib/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-ib/vars/main.yml 5 | # 6 | -------------------------------------------------------------------------------- /roles/net-infinipath/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-infinipath/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-infinipath/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-infinipath/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-infinipath/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-infinipath/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/net-infinipath/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-infinipath/tasks/main.yml -------------------------------------------------------------------------------- /roles/net-infinipath/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/net-infinipath/templates/template.j2 -------------------------------------------------------------------------------- /roles/net-infinipath/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/net-infinipath/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nfs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nfs/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nfs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nfs/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nfs/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nfs/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/nfs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/nfs/tasks/main.yml -------------------------------------------------------------------------------- /roles/nfs/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/nfs/templates/template.j2 -------------------------------------------------------------------------------- /roles/nfs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/nfs/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ntp/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ntp/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ntp/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ntp/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ntp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ntp/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ntp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ntp/tasks/main.yml -------------------------------------------------------------------------------- /roles/ntp/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ntp/templates/template.j2 -------------------------------------------------------------------------------- /roles/ntp/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ntp/vars/main.yml -------------------------------------------------------------------------------- /roles/ohpc-base/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ohpc-base/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ohpc-base/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ohpc-base/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ohpc-base/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ohpc-base/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/ohpc-base/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ohpc-base/tasks/main.yml -------------------------------------------------------------------------------- /roles/ohpc-base/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/ohpc-base/templates/template.j2 -------------------------------------------------------------------------------- /roles/ohpc-base/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/ohpc-base/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-gnu/defaults/main.yml 5 | # 6 | 7 | gnu_version: "7" 8 | -------------------------------------------------------------------------------- /roles/openmpi-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/openmpi-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/openmpi-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/openmpi-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/openmpi-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi3-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi3-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi3-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi3-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi3-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi3-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/openmpi3-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi3-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/openmpi3-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/openmpi3-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/openmpi3-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/openmpi3-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/perf-tools-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/perf-tools-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/perf-tools-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/perf-tools-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/perf-tools-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/perf-tools-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/perf-tools-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/perf-tools-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/perf-tools-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/perf-tools-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/rsyslog/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/rsyslog/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/rsyslog/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/rsyslog/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/rsyslog/tasks/main.yml -------------------------------------------------------------------------------- /roles/rsyslog/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/rsyslog/templates/template.j2 -------------------------------------------------------------------------------- /roles/rsyslog/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-client/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/slurm-client/defaults/main.yml -------------------------------------------------------------------------------- /roles/slurm-client/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-client/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-client/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/slurm-client/tasks/main.yml -------------------------------------------------------------------------------- /roles/slurm-client/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/slurm-client/templates/template.j2 -------------------------------------------------------------------------------- /roles/slurm-client/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-client/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-server/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-server/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/slurm-server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/slurm-server/tasks/main.yml -------------------------------------------------------------------------------- /roles/slurm-server/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/slurm-server/templates/template.j2 -------------------------------------------------------------------------------- /roles/slurm-server/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/slurm-server/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/spack/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/spack/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/spack/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/spack/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/spack/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/spack/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/spack/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/spack/tasks/main.yml -------------------------------------------------------------------------------- /roles/spack/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/spack/templates/template.j2 -------------------------------------------------------------------------------- /roles/spack/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/spack/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/test-suite-ohpc/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/test-suite-ohpc/defaults/main.yml -------------------------------------------------------------------------------- /roles/test-suite-ohpc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/test-suite-ohpc/tasks/main.yml -------------------------------------------------------------------------------- /roles/test-suite-ohpc/templates/configure.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/test-suite-ohpc/templates/configure.sh.j2 -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-gnu/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-gnu/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-gnu/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/third-party-libs-gnu/tasks/main.yml -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/third-party-libs-gnu/templates/template.j2 -------------------------------------------------------------------------------- /roles/third-party-libs-gnu/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-gnu/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-intel/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-intel/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-intel/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-intel/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-intel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-intel/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/third-party-libs-intel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/third-party-libs-intel/tasks/main.yml -------------------------------------------------------------------------------- /roles/third-party-libs-intel/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/third-party-libs-intel/templates/template.j2 -------------------------------------------------------------------------------- /roles/third-party-libs-intel/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/third-party-libs-intel/vars/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/valgrind/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/valgrind/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/valgrind/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/valgrind/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/valgrind/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/valgrind/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/valgrind/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/valgrind/tasks/main.yml -------------------------------------------------------------------------------- /roles/valgrind/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/valgrind/templates/template.j2 -------------------------------------------------------------------------------- /roles/valgrind/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/valgrind/vars/main.yml -------------------------------------------------------------------------------- /roles/warewulf-final/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-final/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-final/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-final/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-final/tasks/main.yml -------------------------------------------------------------------------------- /roles/warewulf-final/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-final/templates/template.j2 -------------------------------------------------------------------------------- /roles/warewulf-final/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-final/vars/main.yml -------------------------------------------------------------------------------- /roles/warewulf-init/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/defaults/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-init/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/handlers/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-init/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # 4 | #roles/warewulf/meta/main.yml 5 | # 6 | 7 | -------------------------------------------------------------------------------- /roles/warewulf-init/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-init/tasks/main.yml -------------------------------------------------------------------------------- /roles/warewulf-init/templates/template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-init/templates/template.j2 -------------------------------------------------------------------------------- /roles/warewulf-init/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/roles/warewulf-init/vars/main.yml -------------------------------------------------------------------------------- /run_testsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/run_testsuite.yml -------------------------------------------------------------------------------- /scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/scripts/check.sh -------------------------------------------------------------------------------- /scripts/mknewrole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/scripts/mknewrole.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/ansible-playbook-for-ohpc/HEAD/site.yml --------------------------------------------------------------------------------