Skip to content

Commit

Permalink
https://github.com/ansible/ansible-lint/pull/2505
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Sep 30, 2022
1 parent be12789 commit 72513c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
- { dest: "/etc/ceph/ceph.conf", owner: "ceph", group: "ceph" }

- name: tweak settings in ini files
ini_file:
community.general.ini_file:
section: "{{ item.section }}"
option: "{{ item.option }}"
value: "{{ item.value }}"
Expand All @@ -123,7 +123,7 @@
- ceph_mgr | systemctl restart ceph-mgr.target

- name: create mgr keyring
ceph_key:
ceph_key: # noqa fqcn[action]
name: "{{ item.name }}"
dest: "{{ item.dest }}"
caps: "{{ item.caps | default(omit) }}"
Expand Down Expand Up @@ -170,7 +170,7 @@
failed_when: false

- name: ceph mgr module enable
ceph_mgr_module:
ceph_mgr_module: # noqa fqcn[action]
name: "{{ item.name }}"
state: "{{ item.state }}"
loop: "{{ ceph_mgr_module }}"
Expand Down

0 comments on commit 72513c8

Please sign in to comment.