forked from josch/mmdebstrap
coverage.sh: the output of getcap differs depending on the version
This commit is contained in:
parent
e9e5f15f61
commit
0dc8321094
1 changed files with 8 additions and 4 deletions
12
coverage.sh
12
coverage.sh
|
@ -268,14 +268,18 @@ if [ "$variant" = "-" ]; then
|
|||
rm /tmp/debian-$dist-mm/var/lib/systemd/catalog/database
|
||||
|
||||
cap=\$(chroot /tmp/debian-$dist-debootstrap /sbin/getcap /bin/ping)
|
||||
if [ "\$cap" != "/bin/ping = cap_net_raw+ep" ]; then
|
||||
echo "expected bin/ping to have capabilities cap_net_raw+ep" >&2
|
||||
expected="/bin/ping cap_net_raw=ep"
|
||||
if [ "$dist" = stable ]; then
|
||||
expected="/bin/ping = cap_net_raw+ep"
|
||||
fi
|
||||
if [ "\$cap" != "\$expected" ]; then
|
||||
echo "expected bin/ping to have capabilities \$expected" >&2
|
||||
echo "but debootstrap produced: \$cap" >&2
|
||||
exit 1
|
||||
fi
|
||||
cap=\$(chroot /tmp/debian-$dist-mm /sbin/getcap /bin/ping)
|
||||
if [ "\$cap" != "/bin/ping = cap_net_raw+ep" ]; then
|
||||
echo "expected bin/ping to have capabilities cap_net_raw+ep" >&2
|
||||
if [ "\$cap" != "\$expected" ]; then
|
||||
echo "expected bin/ping to have capabilities \$expected" >&2
|
||||
echo "but mmdebstrap produced: \$cap" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue