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

25 lines
460 B
Text
Raw 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)
sel=$(whiptail --backtitle "$apptitle" --title "Kernel Linux LTS Install" --checklist "" --cancel-button "Back" 0 0 0 \
"${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