Skip to content

Commit

Permalink
Use correct RGW systemd file name template
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
NotTheEvilOne authored Nov 28, 2024
1 parent d925930 commit 5563889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rookify/modules/ceph.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_systemd_osd_file_name(self, host: str, osd_id: int) -> str:

def get_systemd_rgw_file_name(self, host: str) -> str:
return self._get_systemd_template_file_name(
self._systemd_file_name_templates.get("mon", "ceph-radosgw.target"),
self._systemd_file_name_templates.get("rgw", "ceph-radosgw.target"),
host,
)

Expand Down

0 comments on commit 5563889

Please sign in to comment.