Skip to content

Commit 5563889

Browse files
Use correct RGW systemd file name template
Fixes an issue found related to #106 with systemd RGW systemd file name template not being usable at all. Fixes: #106 Signed-off-by: Tobias Wolf <[email protected]>
1 parent d925930 commit 5563889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rookify/modules/ceph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def get_systemd_osd_file_name(self, host: str, osd_id: int) -> str:
7171

7272
def get_systemd_rgw_file_name(self, host: str) -> str:
7373
return self._get_systemd_template_file_name(
74-
self._systemd_file_name_templates.get("mon", "ceph-radosgw.target"),
74+
self._systemd_file_name_templates.get("rgw", "ceph-radosgw.target"),
7575
host,
7676
)
7777

0 commit comments

Comments
 (0)