View | Details | Raw Unified | Return to bug 52454
Collapse All | Expand All

(-)a/base/univention-bootsplash/univention-welcome-screen (-1 / +14 lines)
Lines 82-93 check_capabilities () { Link Here
82
	fi
82
	fi
83
}
83
}
84
84
85
show_welcome_screen () {
85
start_plymouthd () {
86
	plymouthd
86
	plymouthd
87
	if ! plymouth --ping; then
87
	if ! plymouth --ping; then
88
		echo "plymouthd not running. Do nothing and exit."
88
		echo "plymouthd not running. Do nothing and exit."
89
		exit 1
89
		exit 1
90
	fi
90
	fi
91
	for i in $(seq 30); do
92
		plymouth --has-active-vt && break
93
		sleep 1
94
	done
95
	if ! plymouth --has-active-vt; then
96
		echo "plymouth could not paint on active vt? Do nothing and exit."
97
		plymouth quit
98
		exit 1
99
	fi
100
}
101
102
show_welcome_screen () {
103
	start_plymouthd
91
	echo "going to plymouth welcome screen mode..."
104
	echo "going to plymouth welcome screen mode..."
92
	lang="${locale_default%%:*}"
105
	lang="${locale_default%%:*}"
93
	if [ -n "$lang" ]; then
106
	if [ -n "$lang" ]; then

Return to bug 52454