Skip to content
Snippets Groups Projects
Commit 20ee8bf3 authored by Simon Michnowicz's avatar Simon Michnowicz
Browse files

ubuntu debs upated

parent 8e20acab
No related branches found
No related tags found
1 merge request!32Simons updates
...@@ -13,12 +13,18 @@ ...@@ -13,12 +13,18 @@
# with_items: "{{ lustre_pkgs }}" # with_items: "{{ lustre_pkgs }}"
- name: install rpms - name: install rpms
yum: name=/tmp/lustre-client-modules-2.7.0-3.10.0_229.14.1.el7.x86_64.x86_64.rpm # we now have a new kernel version
#yum: name=/tmp/lustre-client-modules-2.7.0-3.10.0_229.14.1.el7.x86_64.x86_64.rpm
#yum: name=/tmp/lustre-client-modules-2.7.0-3.10.0_229.20.1.el7.x86_64.x86_64.rpm
yum: name=/tmp/lustre-client-modules-2.7.65-3.10.0_327.4.4.el7.x86_64_gab38c3a.x86_64.rpm
sudo: true sudo: true
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
- name: install rpms - name: install rpms
yum: name=/tmp/lustre-client-2.7.0-3.10.0_229.14.1.el7.x86_64.x86_64.rpm # we now have a new kernel version
#yum: name=/tmp/lustre-client-2.7.0-3.10.0_229.14.1.el7.x86_64.x86_64.rpm
#yum: name=/tmp/lustre-client-2.7.0-3.10.0_229.20.1.el7.x86_64.x86_64.rpm
yum: name=/tmp/lustre-client-2.7.65-3.10.0_327.4.4.el7.x86_64_gab38c3a.x86_64.rpm
sudo: true sudo: true
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
...@@ -38,10 +44,32 @@ ...@@ -38,10 +44,32 @@
# vi debian/changelog (the version number on the first line is incorrect) # vi debian/changelog (the version number on the first line is incorrect)
# make debs # make debs
# #
- name: install debs #- linux-patch-lustre_2.7.62-1_all.deb
apt: name="/tmp/{{ item }}" # - lustre-client-modules-3.13.0-58-generic_2.7.62-1_amd64.deb
# - lustre-utils_2.7.62-1_amd64.deb
#
# LOOPS DO NOT WORK WITH YUM OR APT IN ANSIBLE
#- name: install debs from /tmp
# apt: name="/tmp/{{ item }}"
# #apt: deb="/tmp/{{ item }}"
# sudo: true
# with_items: "{{ lustre_pkgs }}"
# when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14"
- name: install linux-patch-lustre_2.7.62-1_all.deb
apt: deb="/tmp/linux-patch-lustre_2.7.62-1_all.deb"
sudo: true
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14"
- name: install lustre-client-modules-3.13.0-83-generic_2.7.62-1_amd64.deb
apt: deb="/tmp/lustre-client-modules-3.13.0-83-generic_2.7.62-1_amd64.deb"
sudo: true
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14"
- name: install lustre-utils_2.7.62-1_amd64.deb
apt: deb="/tmp/lustre-utils_2.7.62-1_amd64.deb"
sudo: true sudo: true
with_items: "{{ lustre_pkgs }}"
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14" when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14"
- name: "Mount lustre filesystems" - name: "Mount lustre filesystems"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment