2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-04-14 12:51:27 +00:00
Files
confluent/genesis/97genesis/module-setup.sh
2025-03-24 16:28:36 -04:00

23 lines
378 B
Bash

#!/usr/bin/bash
# called by dracut
check() {
return 0
}
install() {
. $moddir/install-base
#. $moddir/install-gui
if [ -d /usr/lib64/python3.13/ ]; then
. $moddir/install-python313
elif [ -d /usr/lib64/python3.9/ ]; then
. $moddir/install-python39
fi
}
installkernel() {
. $moddir/installkernel
}