Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0aeab5a
libnftnl: upgrade 1.2.1 -> 1.2.2
wangmingyu84 Jun 13, 2022
95c182e
nftables: Upgrade 1.0.2 -> 1.0.4
akiernan Jul 12, 2022
df94acc
libnftnl: upgrade 1.2.2 -> 1.2.3
yizhao1 Sep 30, 2022
135ffaf
nftables: upgrade 1.0.4 -> 1.0.5
yizhao1 Sep 30, 2022
daeb93d
nftables: use automake ptest output format
rwmacleod Nov 3, 2022
d66e9a0
libnftnl: upgrade 1.2.3 -> 1.2.4
wangmingyu84 Nov 13, 2022
647ba45
nftables: Upgrade to 1.0.6
kraj Jan 5, 2023
0b71f40
nftables: fix builds with latest setuptools
kanavin Jan 5, 2023
79a8b66
libnfnetlink: upgrade 1.0.1 -> 1.0.2
yizhao1 Mar 6, 2023
b76824a
libnftnl: upgrade 1.2.4 -> 1.2.5
yizhao1 Mar 12, 2023
80da446
nftables: upgrade 1.0.6 -> 1.0.7
gotthardp Apr 14, 2023
d37fee0
libnftnl: upgrade 1.2.5 -> 1.2.6
wangmingyu84 Jul 18, 2023
cb6bb47
libnfnetlink: enable native build
yizhao1 Jul 28, 2023
4f50c00
libnetfilter-queue: enable native build
yizhao1 Jul 28, 2023
e73a6e9
nftables: upgrade 1.0.7 -> 1.0.8
yizhao1 Aug 23, 2023
2c41c4d
nftables: upgrade 1.0.8 -> 1.0.9
yizhao1 Oct 23, 2023
c755a19
nftables: Add DESCRIPTION and HOMEPAGE
rwmacleod Mar 26, 2024
25b6c8c
nftables: Fix ptest output format issues
wlyu2 Apr 2, 2024
53e3b59
nftables: Fix ShellCheck violations in ptest wrapper script "run-ptest"
wlyu2 Apr 2, 2024
cbb1ca2
nftables: Fix failed ptest testcases
wlyu2 Apr 2, 2024
fda017c
nftables: Fix ptest runs
kraj Apr 10, 2024
d4ab590
nftables: change ptest output format
jiajia123-wind Jul 19, 2024
32a57ef
firewalld: update to 1.1.1 fixes ptest
afreof Jun 8, 2022
50efe5a
firewalld: upgrade 1.1.1 -> 1.2.0
afreof Jul 7, 2022
b958a23
firewalld: add features_check on gobject-introspection-data
rossburton May 24, 2023
a4bb34e
firewalld: fix REQUIRED_DISTRO_FEATURES gobject-introspection-data
gotthardp May 31, 2023
e81c304
firewalld: upgrade 1.2.0 -> 1.3.2
gotthardp Jun 5, 2023
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
21 changes: 21 additions & 0 deletions meta-networking/recipes-connectivity/firewalld/files/run-ptest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/sh

ret_val=0

# Check if all the kernel modules are available
FIREWALLD_KERNEL_MODULES="@@FIREWALLD_KERNEL_MODULES@@"
for m in $FIREWALLD_KERNEL_MODULES; do
if modprobe $m; then
echo "PASS: loading $m"
else
echo "FAIL: loading $m"
ret_val=1
fi
done

# Run the test suite from firewalld
# Failing testsuites: 203 226 241 250 270 280 281 282 285 286
# Problem icmpv6 compared against ipv6-icmptype?
/usr/share/firewalld/testsuite/testsuite -C /tmp -A || ret_val=1

exit $ret_val
92 changes: 0 additions & 92 deletions meta-networking/recipes-connectivity/firewalld/firewalld_0.9.4.bb

This file was deleted.

Loading