blob: 5300726dc043e75b11acd2f6994527f9f61c778e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
# Copyright 2004-2013 Sabayon
# Distributed under the terms of the GNU General Public License v2
depend() {
before xdm
after rogentoslive
need dbus
}
start() {
ebegin "Configuring the installer"
/usr/libexec/installer-gui.sh
eend $?
}
|