Skip to content

Commit

Permalink
Merge pull request #90 from igsilya/ubuntu-24.04
Browse files Browse the repository at this point in the history
Fix ubuntu image build on 24.04 + fix tests on latest fedora.
  • Loading branch information
dceara authored Aug 5, 2024
2 parents 7cb884a + e6022a2 commit 9884f0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .ci/test_basic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ $PODMAN_BIN exec -it ovn-gw-1 ping -c 1 -w 1 170.168.0.5
$PODMAN_BIN exec -it ovn-chassis-1 ip netns

# sw01p1 : dual stack
$PODMAN_BIN exec -it ovn-chassis-1 ip netns exec sw01p1 ip -4 route > sw01p1_route
$PODMAN_BIN exec -it ovn-chassis-1 ip netns exec sw01p1 ip -6 route >> sw01p1_route
$PODMAN_BIN exec -it ovn-chassis-1 \
ip netns exec sw01p1 ip --color=never -4 route > sw01p1_route
$PODMAN_BIN exec -it ovn-chassis-1 \
ip netns exec sw01p1 ip --color=never -6 route >> sw01p1_route
cat sw01p1_route
grep "11.0.0.0/24 dev sw01p1" sw01p1_route
grep "default via 11.0.0.1 dev sw01p1" sw01p1_route
Expand Down
2 changes: 1 addition & 1 deletion image/cinc/install_ubuntu_pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ apt install -yq --no-install-recommends \
python3-pip \
python3-psutil \
python3-six \
resource-agents \
resource-agents* \
tcpdump \
uuid

Expand Down

0 comments on commit 9884f0a

Please sign in to comment.