mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-13 14:00:37 +00:00
15 lines
204 B
Plaintext
Executable File
15 lines
204 B
Plaintext
Executable File
post_install() {
|
|
if [ $(type -p mkinitramfs) ]; then
|
|
(
|
|
cd /boot
|
|
mkinitramfs 4.18.9
|
|
mv initrd-4.18.9.img initrd-venom.img
|
|
)
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
rm -f /boot/initrd-venom.img
|
|
post_install
|
|
}
|