mirror of
https://github.com/xcat2/confluent.git
synced 2026-04-14 12:51:27 +00:00
23 lines
378 B
Bash
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
|
|
}
|
|
|