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.
17 lines
347 B
17 lines
347 B
# Usage: $ ansible-playbook update.yml |
|
# update all packages |
|
--- |
|
- name: update all packages excluding the kernel |
|
hosts: vulture |
|
tasks: |
|
- name: update |
|
yum: |
|
name: '*' |
|
state: latest |
|
exclude: kernel*,firmware* |
|
|
|
- name: copy updated lustre.conf |
|
copy: |
|
src: files/lustre.conf |
|
dest: /etc/modprobe.d/lustre.conf |
|
|
|
|