11 lines
231 B
Bash
Executable file
11 lines
231 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# desc: test triggers in kernel package
|
|
|
|
$APK add --root $ROOT --initdb -U --repository $PWD/repo1 \
|
|
--repository $SYSREPO alpine-keys linux-lts
|
|
|
|
test -e "$ROOT"/boot/vmlinuz-lts
|
|
|
|
test -e "$ROOT"/boot/initramfs-lts
|
|
|