diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
commit | 7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch) | |
tree | 1684924656132935256e034f35f92abee6623265 /app-misc/rogentoslive-tools/files/1.0/installer-gui |
Added ebuilds for kogaion desktop
Diffstat (limited to 'app-misc/rogentoslive-tools/files/1.0/installer-gui')
-rwxr-xr-x | app-misc/rogentoslive-tools/files/1.0/installer-gui | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-misc/rogentoslive-tools/files/1.0/installer-gui b/app-misc/rogentoslive-tools/files/1.0/installer-gui new file mode 100755 index 00000000..d8fd3dc0 --- /dev/null +++ b/app-misc/rogentoslive-tools/files/1.0/installer-gui @@ -0,0 +1,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 + +} |