Skip to content

Commit

Permalink
shell: Enable host switcher also on Fedora 40
Browse files Browse the repository at this point in the history
We don't want to change behavior for released OSes.
  • Loading branch information
mvollmer committed Aug 1, 2024
1 parent 17d8d05 commit eaec61d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions pkg/shell/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"config": {
"host_switcher": {
"platform:f39": true,
"platform:f40": true,
"platform:el9": true,
"bookworm": true,
"jammy": true,
Expand Down
4 changes: 2 additions & 2 deletions test/common/testlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1623,8 +1623,8 @@ def setUp(self, restrict: bool = True) -> None:
self.sshd_socket = 'sshd.socket'
self.restart_sshd = f'systemctl try-restart {self.sshd_service}'

# only enabled by default on stable LTS OSes; see pkg/shell/manifest.json
self.multihost_enabled = image.startswith(("rhel-9", "centos-9")) or image in ["ubuntu-2204", "ubuntu-stable", "debian-stable", "fedora-39"]
# only enabled by default on released OSes; see pkg/shell/manifest.json
self.multihost_enabled = image.startswith(("rhel-9", "centos-9")) or image in ["ubuntu-2204", "ubuntu-stable", "debian-stable", "fedora-39", "fedora-40", "fedora-coreos"]

def nonDestructiveSetup(self) -> None:
"""generic setUp/tearDown for @nondestructive tests"""
Expand Down

0 comments on commit eaec61d

Please sign in to comment.