Skip to content

Commit

Permalink
Try to work around dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bischoff committed Oct 16, 2023
1 parent 90cf276 commit 130da7d
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,10 @@ module "ubuntu2004-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"

# WORKAROUND https://github.com/uyuni-project/uyuni/issues/7637
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}

// Ubuntu 22.04 is not supported by SUSE Manager 4.2
Expand All @@ -563,6 +567,10 @@ module "debian10-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"

# WORKAROUND https://github.com/uyuni-project/uyuni/issues/7637
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}

// Debian 11 is not supported by SUSE Manager 4.2
Expand Down Expand Up @@ -768,6 +776,10 @@ module "ubuntu2004-sshminion" {
}
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"

# WORKAROUND https://github.com/uyuni-project/uyuni/issues/7637
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}

// Ubuntu 22.04 is not supported by SUSE Manager 4.2
Expand All @@ -784,6 +796,10 @@ module "debian10-sshminion" {
}
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"

# WORKAROUND https://github.com/uyuni-project/uyuni/issues/7637
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}

// Debian 11 is not supported by SUSE Manager 4.2
Expand Down

0 comments on commit 130da7d

Please sign in to comment.