blob: 941b46aa278b1a6ff129e9be620dfd59f66b6261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/sbin/runscript
# Copyright 2006 Sabayon Linux
# Distributed under the terms of the GNU General Public License v2
depend() {
before xdm
after sabayonlive
}
start() {
source /sbin/sabayon-functions.sh
if sabayon_is_gui_install; then
ebegin "Sabayon Linux GUI Installer service"
# Enable autologin
sabayon_setup_autologin
# Setup GUI installer
sabayon_setup_gui_installer
eend 0
fi
return 0
}
|