mirror of https://github.com/ceph/ceph-ansible.git
10 lines
259 B
YAML
10 lines
259 B
YAML
|
---
|
||
|
- name: generate systemd unit file
|
||
|
become: true
|
||
|
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
|