Merge pull request #104 from psy-q/master

Fix typo dependancies -> dependencies
pull/108/head
Leseb 2014-08-20 11:04:21 +02:00
commit ff671629ee
6 changed files with 11 additions and 11 deletions

View File

@ -14,7 +14,7 @@
fail: msg="Distribution not supported {{ ansible_os_family }}"
when: ansible_os_family not in ['Debian', 'RedHat']
- name: Install dependancies
- name: Install dependencies
apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=3600 # we update the cache just in case...
with_items:
- python-pycurl
@ -32,7 +32,7 @@
with_items:
- ceph
- ceph-common #|
- ceph-fs-common #|--> yes, they are already all dependancies from 'ceph'
- ceph-fs-common #|--> yes, they are already all dependencies from 'ceph'
- ceph-fuse #|--> however while proceding to rolling upgrades and the 'ceph' package upgrade
- ceph-mds #|--> they don't get update so we need to force them
- libcephfs1 #|

View File

@ -14,7 +14,7 @@
fail: msg="Distribution not supported {{ ansible_os_family }}"
when: ansible_os_family not in ['Debian', 'RedHat']
- name: Install dependancies
- name: Install dependencies
yum: name={{ item }} state=present
with_items:
- python-pycurl

View File

@ -2,11 +2,11 @@
## SCENARIO 1: JOURNAL AND OSD_DATA ON THE SAME DEVICE
#
- name: Install dependancies
- name: Install dependencies
apt: pkg=parted state=present
when: ansible_os_family == 'Debian'
- name: Install dependancies
- name: Install dependencies
yum: name=parted state=present
when: ansible_os_family == 'RedHat'

View File

@ -2,11 +2,11 @@
## SCENARIO 4: USE A DIRECTORY INSTEAD OF A DISK FOR OSD
#
- name: Install dependancies
- name: Install dependencies
apt: pkg=parted state=present
when: ansible_os_family == 'Debian'
- name: Install dependancies
- name: Install dependencies
yum: name=parted state=present
when: ansible_os_family == 'RedHat'

View File

@ -2,11 +2,11 @@
## SCENARIO 2: SINGLE JOURNAL DEVICE FOR N OSDS
#
- name: Install dependancies
- name: Install dependencies
apt: pkg=parted state=present
when: ansible_os_family == 'Debian'
- name: Install dependancies
- name: Install dependencies
yum: name=parted state=present
when: ansible_os_family == 'RedHat'

View File

@ -2,11 +2,11 @@
## SCENARIO 3: N JOURNAL DEVICES FOR N OSDS
#
- name: Install dependancies
- name: Install dependencies
apt: pkg=parted state=present
when: ansible_os_family == 'Debian'
- name: Install dependancies
- name: Install dependencies
yum: name=parted state=present
when: ansible_os_family == 'RedHat'