summaryrefslogtreecommitdiff
path: root/tests/bin/apk
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2023-01-23 15:31:04 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2023-01-24 10:41:58 +0000
commitea460f60dc63c6a41b510fdecef03b7a2e1af9a2 (patch)
treeffdfd082ed25272815f8da4c072ae4ea8dceb187 /tests/bin/apk
parent4f5e613ab51fe2d630d1300335f640782752a19b (diff)
downloadalpine-conf-ea460f60dc63c6a41b510fdecef03b7a2e1af9a2.zip
tests: add fake apk audit
useful for `lbu package`
Diffstat (limited to 'tests/bin/apk')
-rwxr-xr-xtests/bin/apk7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/bin/apk b/tests/bin/apk
index 29da9ba..8f2a945 100755
--- a/tests/bin/apk
+++ b/tests/bin/apk
@@ -7,15 +7,18 @@ if [ "$1" = "--print-arch" ]; then
exit
fi
-echo "DEBUG: fake apk" "$@"
-
rootfs=.
kver=5.15.78-0
while [ $# -gt 0 ]; do
case "$1" in
add|del)
+ echo "DEBUG: fake apk" "$@"
cmd="$1"
;;
+ audit)
+ echo "U etc/hostname"
+ exit 0
+ ;;
-p|--root)
shift
rootfs="$1"