]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Fix typo dependancies -> dependencies 104/head
authorRamón Cahenzli <rca@psy-q.ch>
Wed, 20 Aug 2014 08:57:14 +0000 (10:57 +0200)
committerRamón Cahenzli <rca@psy-q.ch>
Wed, 20 Aug 2014 08:57:14 +0000 (10:57 +0200)
roles/ceph-common/tasks/Debian.yml
roles/ceph-common/tasks/RedHat.yml
roles/ceph-osd/tasks/journal_collocation.yml
roles/ceph-osd/tasks/osd_directory.yml
roles/ceph-osd/tasks/raw_journal.yml
roles/ceph-osd/tasks/raw_multi_journal.yml

index e7c70672577e988bb09c7a2ad8e8d09a6f01ccf6..200623c00524401a837064e9fb217baa7e6ac143 100644 (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     #|
index c4965f6abed628ba5f0b39db79537fa01648e302..4d478209dd08501c085dc9c4fd0a47ac164e61a1 100644 (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
index 977cb6d0e10ff2499e725a361900d8feec54a7e8..780277abf68a33e5206b6efb35ca5c478e65f284 100644 (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'
 
index 8340aa08fedc6e42ec27bf6e3b22ccee6269f5c9..75ea2813c2268366eb342ab284c6314632ae1350 100644 (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'
 
index ad8646cf64e5e3db2f01f9b5615ad0116ef64d57..3dce90fd070d6e048f998e431b9ed12719738f63 100644 (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'
 
index c4fad21a648beee44346eccb3abeaa66e8fb7087..c54e6fd7e31a2cd86daeee481f47f4f1c05f898b 100644 (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'