ceph-ansible/roles/ceph-osd/tasks
Guillaume Abrioux deaf273b25 syntax: change local_action syntax
Use a nicer syntax for `local_action` tasks.
We used to have oneliner like this:
```
local_action: wait_for port=22 host={{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }} state=started delay=10 timeout=500 }}
```

The usual syntax:
```
    local_action:
      module: wait_for
      port: 22
      host: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
      state: started
      delay: 10
      timeout: 500
```
is nicer and kind of way to keep consistency regarding the whole
playbook.

This also fix a potential issue about missing quotation :

```
Traceback (most recent call last):
  File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 213, in <module>
    main()
  File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 185, in main
    rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell, encoding=None, data=stdin)
  File "/tmp/ansible_wQtWsi/ansible_modlib.zip/ansible/module_utils/basic.py", line 2710, in run_command
  File "/usr/lib64/python2.7/shlex.py", line 279, in split
    return list(lex)                                                                                                                                                                                                                                                                                                            File "/usr/lib64/python2.7/shlex.py", line 269, in next
    token = self.get_token()
  File "/usr/lib64/python2.7/shlex.py", line 96, in get_token
    raw = self.read_token()
  File "/usr/lib64/python2.7/shlex.py", line 172, in read_token
    raise ValueError, "No closing quotation"
ValueError: No closing quotation
```

writing `local_action: shell echo {{ fsid }} | tee {{ fetch_directory }}/ceph_cluster_uuid.conf`
can cause trouble because it's complaining with missing quotes, this fix solves this issue.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1510555

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-31 10:45:34 +01:00
..
docker container: trigger handlers on systemd file change 2018-01-10 16:46:42 +01:00
scenarios ceph-osd: adds dmcrypt to the lvm scenario 2018-01-24 14:10:08 +01:00
activate_osds.yml osd: skip devices marked as '/dev/dead' 2018-01-11 17:34:32 +01:00
build_devices.yml tests: remove OSD_FORCE_ZAP variable from tests 2017-11-14 17:55:01 +01:00
ceph_disk_cli_options_facts.yml Remove jinja2 delimiters from `when` keys 2017-10-12 11:27:42 -05:00
check_gpt.yml osd: fix check gpt 2017-12-20 17:42:45 +01:00
check_mandatory_vars.yml ceph-osd lvm scnearios are no longer limited to filestore 2017-10-25 08:23:45 -04:00
copy_configs.yml syntax: change local_action syntax 2018-01-31 10:45:34 +01:00
main.yml osd: ensure a gpt label is set on device 2017-11-17 17:32:23 +01:00
osd_fragment.yml Use check_mode instead of always_run 2017-10-25 09:53:34 -05:00
pre_requisite.yml osd: remove leftover and fix a typo 2017-11-21 11:11:34 +01:00
start_osds.yml Do not search osd ids if ceph-volume 2018-01-30 14:44:38 +01:00