Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/guest_tools/unix/test_xen_guest_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def agent_install(self, running_vm: VM, xen_guest_agent_urls: dict[str, str]) ->
rpm_repo = xen_guest_agent_urls['rpm_repo']
vm.ssh(f"echo -e '[xen-guest-agent]\\nbaseurl={rpm_repo}main/\\ngpgcheck=0'"
f" > /etc/yum.repos.d/xen-guest-agent.repo")
vm.ssh('dnf install -y xen-guest-agent')
vm.ssh('app=yum && which dnf && app=dnf ; $app install -y xen-guest-agent')
elif pkg_mgr == PackageManagerEnum.APT_GET:
# DEB packages are published to a stable APT repo in the GitLab
# Generic Package Registry after each push to main.
Expand Down
Loading