You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
458 B
14 lines
458 B
4 months ago
|
#!/bin/bash
|
||
|
|
||
|
actual=$(wget -o/dev/null -O/dev/stdout https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/include/uapi/linux/capability.h | grep "#define.CAP_LAST_CAP"|awk '{print $3}')
|
||
|
working=$(grep "#define.CAP_LAST_CAP" libcap/include/uapi/linux/capability.h|awk '{print $3}')
|
||
|
|
||
|
if [[ ${actual} = ${working} ]]; then
|
||
|
echo "up to date with officially named caps"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "want: ${actual}"
|
||
|
echo "have: ${working}"
|
||
|
exit 1
|