blob: 43eebe9f11555d20da75ffcef66ea60c7ab22620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
local -r _manjaro_kernel="$(mhwd-kernel -li | head -n 1 | grep -Po 'linux\d+-?\S*[^)]')"
pacman -Sy --noconfirm --needed "${_manjaro_kernel}-virtualbox-host-modules"
source /tmp/vedv-git/packages.env
pip install --break-system-packages "${PKG_PROD_MANJARO_PIP[@]}"
command -v vboxreload >/dev/null &&
vboxreload || :
cat <<'EOF'
For more information about how to configure vedv,
visit: <https://github.com/yunielrc/vedv#configure>
EOF
}
|