Skip to content

Commit

Permalink
Merge pull request kernelkit#661 from kernelkit/veth-delete
Browse files Browse the repository at this point in the history
Fix test issues after adding veth-delete test

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit authored Sep 27, 2024
2 parents acb8443 + bac957d commit 40e4b16
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 11 deletions.
2 changes: 2 additions & 0 deletions doc/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ documentation for details.
interface changes (tries to delete both ends of the pair)
- Spellcheck path to `/var/lib/containers` when unpacking OCI archives
on container upgrade
- cli: restore `tcpdump` permissions for administrator level users,
regression introduced in v24.08.0
- The timeout before giving up on loading the `startup-config` at boot
is now 1 minute, just like operations via other front-ends (NETCONF
and RESTCONF). This was previously (incorrectly) set to 10 seconds
Expand Down
9 changes: 5 additions & 4 deletions src/confd/share/migrate/1.0/10-infix-shell-type.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Migrate infix-shell-type:bash -> infix-system:bash

file=$1
temp=$1.tmp

jq '.["ietf-system:system"].authentication.user |= map(.["infix-system:shell"] |= gsub("infix-shell-type:"; ""))' "$file" > "$temp"
mv "$temp" "$file"
temp=${file}.tmp

if jq -e '.["ietf-system:system"]?.authentication?.user? | length > 0' "$file" > /dev/null 2>&1; then
jq '.["ietf-system:system"].authentication.user |= map(.["infix-system:shell"] |= gsub("infix-shell-type:"; ""))' "$file" > "$temp"
mv "$temp" "$file"
fi
20 changes: 16 additions & 4 deletions src/confd/share/migrate/1.1/10-infix-routing-type.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
#!/bin/sh
# migrate ietf-routing-type => infix-routing-type
file=$1
temp=$1.tmp

jq '(.["ietf-routing:routing"]."control-plane-protocols"."control-plane-protocol"[] | select(.type == "ietf-ospf:ospfv2").type) |= "infix-routing:ospfv2"' "$file" > "$temp"
jq '(.["ietf-routing:routing"]."control-plane-protocols"."control-plane-protocol"[] | select(.type == "static").type) |= "infix-routing:static"' "$temp" > "$file"
migrate_routing_type()
{
file=$1
match=$2
replace=$3

if jq -e '.["ietf-routing:routing"]?."control-plane-protocols"?."control-plane-protocol"?[] | length > 0' "$file" > /dev/null 2>&1; then
jq --arg match "${match}" --arg replace "${replace}" '
(.["ietf-routing:routing"]."control-plane-protocols"."control-plane-protocol"[] |
select(.type == $match).type) |= $replace' "${file}" > "${file}.tmp"
mv "${file}.tmp" "${file}"
fi
}

migrate_routing_type "$1" "ietf-ospf:ospfv2" "infix-routing:ospfv2"
migrate_routing_type "$1" "static" "infix-routing:static"
2 changes: 1 addition & 1 deletion src/confd/src/ietf-interfaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ static int netdag_gen_iface_del(struct dagger *net, struct lyd_node *dif,
if (dagger_should_skip_current(net, ifname))
return 0;

if (!strcmp(iftype, "infix-if-type:veth")) {
if (iftype && !strcmp(iftype, "infix-if-type:veth")) {
struct lyd_node *node;
const char *peer;

Expand Down
2 changes: 1 addition & 1 deletion src/klish-plugin-infix/xml/infix.xml
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@
count=${KLISH_PARAM_cnt:+-c $KLISH_PARAM_cnt}
size=${KLISH_PARAM_sz:+-s $KLISH_PARAM_sz}
verbose=${KLISH_PARAM_verbose:+-vvv}
tcpdump -ln $count $size $verbose -i $KLISH_PARAM_iface $KLISH_PARAM_expr
doas tcpdump -ln $count $size $verbose -i $KLISH_PARAM_iface $KLISH_PARAM_expr
</ACTION>
</COMMAND>

Expand Down
8 changes: 7 additions & 1 deletion test/infamy/restconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,13 @@ def get_datastore(self, datastore="operational", path="", parse=True):
dspath = f"{dspath}/{path}"

url = f"{self.restconf_url}{dspath}"
return self._get_raw(url, parse)
try:
return self._get_raw(url, parse)
except requests.exceptions.HTTPError as e:
if e.response.status_code == 404:
return None
else:
raise e

def get_running(self, path=None):
"""Wrapper function to get running datastore"""
Expand Down

0 comments on commit 40e4b16

Please sign in to comment.