]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Cosmetic on apt module 31/head
authorSébastien Han <sebastien.han@enovance.com>
Tue, 11 Mar 2014 14:24:51 +0000 (15:24 +0100)
committerSébastien Han <sebastien.han@enovance.com>
Tue, 11 Mar 2014 14:24:51 +0000 (15:24 +0100)
Use 'present' instead of 'installed'.

Signed-off-by: Sébastien Han <sebastien.han@enovance.com>
roles/common/tasks/Debian.yml
roles/common/tasks/RedHat.yml

index 1274c6e31f9ff365d6af5be275f2910a88d32308..e0d8bef58989762a4fb84fbb5ce44f0ec7f3cedc 100644 (file)
@@ -15,7 +15,7 @@
   when: ansible_os_family not in ['Debian', 'RedHat']
 
 - name: Install dependancies
-  apt: pkg={{ item }} state=installed update_cache=yes cache_valid_time=3600 # we update the cache just in case...
+  apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=3600 # we update the cache just in case...
   with_items:
     - python-pycurl
     - ntp
index 96b734d45eac68ad235e9a4c10ceae24728b568f..29005e1604504f050d8c2655f5c6a938d91d257d 100644 (file)
@@ -15,7 +15,7 @@
   when: ansible_os_family not in ['Debian', 'RedHat']
 
 - name: Install dependancies
-  yum: name={{ item }} state=installed
+  yum: name={{ item }} state=present
   with_items:
     - python-pycurl
     - ntp