obosdi-pkg/install/system/kernel/linux-lts

25 lines
458 B
Text
Raw Permalink Normal View History

2016-04-25 17:29:23 -06:00
#!/bin/bash
. ./lib
options=()
options+=("linux-lts" "" on)
options+=("linux-lts-headers" "" on)
options+=("linux-lts-docs" "" off)
2022-11-10 14:27:23 -07:00
sel=$(dialog --backtitle "$apptitle" --title "Kernel Linux LTS Install" --cancel-button "Back" --checklist "" 0 0 0 \
2016-04-25 17:29:23 -06:00
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
for itm in $sel; do
case $itm in
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
exit 0