Skip to content

Commit

Permalink
fix(manager): return centos7 back to the list of supported OS
Browse files Browse the repository at this point in the history
Since we stuck with CentOS image on Azure, centos7 should returned back
to the list of manager supported distros.
  • Loading branch information
mikliapko authored and fruch committed Jun 27, 2024
1 parent fdf2592 commit a1a5ac1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdcm/mgmt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,8 @@ def __init__(self, manager_node):
ScyllaManagerBase.__init__(self, id="MANAGER", manager_node=manager_node)
self._initial_wait(20)
LOGGER.info("Initiating Scylla-Manager, version: {}".format(self.sctool.version))
list_supported_distros = [Distro.ROCKY8, Distro.ROCKY9,
list_supported_distros = [Distro.CENTOS7,
Distro.ROCKY8, Distro.ROCKY9,
Distro.DEBIAN10, Distro.DEBIAN11,
Distro.UBUNTU20, Distro.UBUNTU22]
self.default_user = "centos"
Expand Down

0 comments on commit a1a5ac1

Please sign in to comment.