xen: add two nodes to the ganeti cluster. Try to fix the xm/xl mess.

This commit is contained in:
Andrea Dell'Amico 2015-08-11 18:12:41 +02:00
parent e816d11be1
commit 372d856260
2 changed files with 16 additions and 12 deletions

View File

@ -67,3 +67,5 @@ nagios_dell_omsa_pkgs:
nagios_dell_standalone_checks:
- check_dell_warranty.py
- check_openmanage
nagios_openmanage_additional_opts: ''

View File

@ -30,30 +30,32 @@
when: is_debian6
tags: squeeze-backports
- name: Install the squeeze-lts repository on debian 6
apt_repository: repo='deb http://http.debian.net/debian squeeze-lts main contrib non-free' state=present
register: update_apt_cache
when: is_debian6
tags: squeeze-lts
- name: Install the backports repository on debian 7
apt_repository: repo='deb http://http.debian.net/debian wheezy-backports main' state=present
register: update_apt_cache
when: is_debian7
tags: wheezy-backports
- name: Install the wheezy-lts repository on debian 7
apt_repository: repo='deb http://http.debian.net/debian wheezy-lts main contrib non-free' state=present
register: update_apt_cache
when: is_debian7
tags: wheeze-lts
- name: Install the backports repository on debian 8
apt_repository: repo='deb http://http.debian.net/debian jessie-backports main' state=present
register: update_apt_cache
when: is_debian8
tags: jessie-backports
# Debian 7 “Wheezy” from February 2016 to May 2018
# Debian 8 “Jessie“ from May 2018 to April/May 2020
- name: Install the squeeze-lts repository on debian 6
apt_repository: repo='deb http://http.debian.net/debian squeeze-lts main contrib non-free' state=present
register: update_apt_cache
when: is_debian6
tags: squeeze-lts
# - name: Install the wheezy-lts repository on debian 7
# apt_repository: repo='deb http://http.debian.net/debian wheezy-lts main contrib non-free' state=present
# register: update_apt_cache
# when: is_debian7
# tags: wheeze-lts
- name: apt key for the internal ppa repository
apt_key: url=http://ppa.research-infrastructures.eu/system/keys/system-archive.asc state=present
when: is_ubuntu