Skip to content

Commit

Permalink
seslib: Ignore Podman 2.2.1 in octopus
Browse files Browse the repository at this point in the history
Ignore Podman 2.2.1 in `octopus` as it contains an unfixed bug that, in
conjunction with using `--network=host`, leads to an `/etc/hosts` entry
being added which confuses Pythons `socket.getfqdn()` function and leads
to inaccessible links in `ceph mgr services`.

Fixes: SUSE#633

Signed-off-by: Patrick Seidensal <[email protected]>
  • Loading branch information
p-se committed Mar 4, 2022
1 parent 999d29b commit 3fe369d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions seslib/templates/zypper.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ zypper --non-interactive removerepo repo-source-non-oss || true
zypper addrepo --refresh {{ os_repo_url }} {{ os_repo_name }}
{% endfor %}

# Ignore Podman 2.2.1 due to bug: https://github.com/SUSE/sesdev/issues/633
{% if version == 'octopus' %}
zypper addlock "podman == 2.2.1"
{% endif %}

# ses6 deepsea install from source requires:
# - SES6 Internal Media repo
# - SLE-15-SP1 Developer Tools Module repos
Expand Down

0 comments on commit 3fe369d

Please sign in to comment.