2017-07-17 23:26:48 +08:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
gather_facts: false
|
2017-07-26 22:29:50 +08:00
|
|
|
become: no
|
2017-07-17 23:26:48 +08:00
|
|
|
tags:
|
|
|
|
- vagrant_setup
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
- name: change ceph_stable to False
|
|
|
|
replace:
|
|
|
|
regexp: "ceph_stable:.*"
|
|
|
|
replace: "ceph_stable: False"
|
|
|
|
dest: "{{ change_dir }}/group_vars/all"
|
|
|
|
when: change_dir is defined
|
|
|
|
|
|
|
|
- name: set ceph_dev to True
|
|
|
|
lineinfile:
|
|
|
|
line: "ceph_dev: True"
|
|
|
|
dest: "{{ change_dir }}/group_vars/all"
|
|
|
|
when: change_dir is defined
|
|
|
|
|
|
|
|
- name: print contents of {{ change_dir }}/group_vars/all
|
|
|
|
command: "cat {{ change_dir }}/group_vars/all"
|