Would like to move to to https://github.com/rug-cit-hpc/pg-playbooks
but has large files...
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
830 B
36 lines
830 B
# creates symlinks in /sofware for skylake nodes: |
|
# |
|
# Usage: $ ansible-playbook skylake_sym.yml |
|
--- |
|
- name: create symlinks |
|
hosts: skylake |
|
tasks: |
|
- name: create symlink /software/group |
|
file: |
|
src: "/apps/group" |
|
dest: "/software/group" |
|
state: link |
|
|
|
- name: create symlink /software/lmod |
|
file: |
|
src: "/apps/skylake/lmod" |
|
dest: "/software/lmod" |
|
state: link |
|
|
|
- name: create symlink /software/licenses |
|
file: |
|
src: "/apps/licenses" |
|
dest: "/software/licenses" |
|
state: link |
|
|
|
- name: create symlink /software/modules |
|
file: |
|
src: "/apps/skylake/modules" |
|
dest: "/software/modules" |
|
state: link |
|
|
|
- name: create symlink /software/software |
|
file: |
|
src: "/apps/skylake/software" |
|
dest: "/software/software" |
|
state: link
|
|
|