blob: d8fd3dc0ea7955325fc8cdeae937a17f7bd5e7fe (
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
26
|
#!/sbin/runscript
# Copyright 2006 Sabayon Linux
# Distributed under the terms of the GNU General Public License v2
depend() {
before xdm
after rogentos
need dbus
}
start() {
source /sbin/rogentos-functions.sh
if sabayon_is_gui_install; then
ebegin "Rogentos Linux GUI Installer service"
# Enable autologin
sabayon_setup_autologin
# Setup GUI installer
sabayon_setup_gui_installer
eend 0
fi
return 0
}
|