From ff1acb9305e5e13239a6ba7a30e99f8aa673514e Mon Sep 17 00:00:00 2001 From: "carey.xu" Date: Tue, 22 Dec 2015 16:18:26 +0800 Subject: cinder volume use the vg created by storage role JIRA: COMPASS-211 Change-Id: I6c6ec36bf015c663bd684ac8f48011397851877b Signed-off-by: carey.xu --- deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml') diff --git a/deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml b/deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml index 342f61ae..3765071e 100644 --- a/deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml +++ b/deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml @@ -9,18 +9,6 @@ lineinfile: dest=/opt/service create=yes line='{{ item }}' with_items: services | union(services_noarch) -- name: check if physical device exists - stat: path={{ physical_device }} - register: status - -- name: load loop.yml - include: loop.yml - when: status.stat.exists == False or status.stat.isblk == False - -- name: load real.yml - include: real.yml - when: status.stat.exists == True and status.stat.isblk == True - - name: upload cinder-volume configuration template: src=cinder.conf dest=/etc/cinder/cinder.conf backup=yes -- cgit 1.2.3-korg