summaryrefslogtreecommitdiff
path: root/packages/altboot/files/altboot-menu/10-noGui
blob: cf3c10c381dc933eb390dee51d9596be5e608f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# !/bin/sh
M_TITLE="Don't launch GUI"

test "$DISABLE_NOGUI_BOOT" = yes && exit 0


run_module() {
	clear ; exec $REAL_INIT "$NO_GUI_RL"
	exit 0
}

case "$1" in
title)	echo "$M_TITLE";;
run)	run_module;;
esac