mirror of
https://github.com/dynup/kpatch
synced 2024-12-19 20:00:00 +00:00
27766f00d8
Signed-off-by: Yannick Cote <ycote@redhat.com>
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
if ! $(eu-readelf --wide --symbols test-gcc-static-local-var-4.ko | awk '$NF == "free_ioctx" { exit 1 }'); then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|