mirror of https://github.com/ceph/ceph-ansible.git
22 lines
579 B
YAML
22 lines
579 B
YAML
---
|
|
- name: generate systemd unit file
|
|
template:
|
|
src: "{{ role_path }}/templates/ceph-radosgw.service.j2"
|
|
dest: /etc/systemd/system/ceph-radosgw@.service
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0644"
|
|
notify: restart ceph rgws
|
|
|
|
- name: generate systemd ceph-radosgw target file
|
|
copy:
|
|
src: ceph-radosgw.target
|
|
dest: /etc/systemd/system/ceph-radosgw.target
|
|
when: containerized_deployment | bool
|
|
|
|
- name: enable ceph-radosgw.target
|
|
service:
|
|
name: ceph-radosgw.target
|
|
enabled: yes
|
|
daemon_reload: yes
|
|
when: containerized_deployment | bool |