]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Change to shell from command
authorMatthew Rees <matthew.rees@secate.com>
Fri, 14 Nov 2014 14:48:21 +0000 (16:48 +0200)
committerMatthew Rees <matthew.rees@secate.com>
Fri, 14 Nov 2014 14:48:21 +0000 (16:48 +0200)
roles/ceph-radosgw/tasks/install_debian.yml

index aff7cd21f7d71a195087dbf4b4ad7591e648351b..970da1fc4c7809619a67c22b1333627e65886f82 100644 (file)
 
 # Needed for Ubuntu 12.04 to have access to libapache2-mod-fastcgi if 100-continue isn't being used
 - name: Enable multiverse repo for Precise
-  command: "sed -i '/^# deb .* multiverse$/ s/^# //' /etc/apt/sources.list"
+  shell: "sed -i '/^# deb .* multiverse$/ s/^# //' /etc/apt/sources.list"
   when: ansible_lsb.codename in ['precise'] and not http_100_continue
 
 # Disable the repo when we are using the Ceph repo for 100-continue packages
 - name: Disable multiverse repo for Precise
-  command: "sed -i '/^deb .* multiverse$/ s/^/# /' /etc/apt/sources.list"
+  shell: "sed -i '/^deb .* multiverse$/ s/^/# /' /etc/apt/sources.list"
   when: ansible_lsb.codename in ['precise'] and http_100_continue
 
 # Needed for Ubuntu 14.04 to have access to libapache2-mod-fastcgi if 100-continue isn't being used