diff options
author | Stefan Cristian B. <steven.darklight@gmail.com> | 2014-12-20 19:41:21 +0200 |
---|---|---|
committer | Stefan Cristian B. <steven.darklight@gmail.com> | 2014-12-20 19:41:21 +0200 |
commit | 702d81caef99379e9b41127dbab77c6868c5d1fe (patch) | |
tree | daebff9b3707258e57826fe26a8a5e0bf1db5d72 | |
parent | 5ce5d9dbce748716ef08288a0557a43b079d1fc0 (diff) | |
parent | c879148f0c34a4ec243f951bba9fc22db665af6a (diff) |
Merge pull request #2 from V3n3RiX/master
drop openrc unit files
-rw-r--r-- | Makefile | 9 | ||||
-rw-r--r-- | cdeject | 11 | ||||
-rw-r--r-- | graphical_start | 13 | ||||
-rw-r--r-- | installer-gui | 15 | ||||
-rw-r--r-- | installer-text | 13 | ||||
-rw-r--r-- | kogaionlive | 14 | ||||
-rw-r--r-- | x-setup-init.d | 26 |
7 files changed, 0 insertions, 101 deletions
@@ -8,7 +8,6 @@ BINDIR ?= /bin LIBEXECDIR ?= /usr/libexec SYSCONFDIR ?= /etc SYSTEMD_UNITDIR ?= $(LIBDIR)/systemd/system -SYSV_INITDIR = /etc/init.d all: for d in $(SUBDIRS); do $(MAKE) -C $$d; done @@ -47,11 +46,3 @@ install: install -d $(DESTDIR)/$(SYSTEMD_UNITDIR)/ install -m 0644 *.service $(DESTDIR)/$(SYSTEMD_UNITDIR)/ - - install -d $(DESTDIR)/$(SYSV_INITDIR)/ - install -m 0755 x-setup-init.d $(DESTDIR)/$(SYSV_INITDIR)/x-setup - install -m 0755 graphical_start ${DESTDIR}/${SYSV_INITDIR} - install -m 0755 kogaionlive $(DESTDIR)/$(SYSV_INITDIR)/ - install -m 0755 installer-gui $(DESTDIR)/$(SYSV_INITDIR)/ - install -m 0755 installer-text $(DESTDIR)/$(SYSV_INITDIR)/ - install -m 0755 cdeject $(DESTDIR)/$(SYSV_INITDIR)/ diff --git a/cdeject b/cdeject deleted file mode 100644 index 302a341..0000000 --- a/cdeject +++ /dev/null @@ -1,11 +0,0 @@ -#!/sbin/runscript - -description="Eject LiveCD/DVD at live system shutdown/reboot" - -depend() { - after * -} - -start() { - /usr/libexec/cdeject.sh -} diff --git a/graphical_start b/graphical_start deleted file mode 100644 index ce95220..0000000 --- a/graphical_start +++ /dev/null @@ -1,13 +0,0 @@ -#!/sbin/runscript -# Copyright 2013 Argent and Argent -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after kogaionlive -} - -start() { - ebegin "Starting the Graphical Interface" - /usr/libexec/graphical_start.sh - eend $? -} diff --git a/installer-gui b/installer-gui deleted file mode 100644 index 9133b6b..0000000 --- a/installer-gui +++ /dev/null @@ -1,15 +0,0 @@ -#!/sbin/runscript -# Copyright 2004-2013 Sabayon -# Distributed under the terms of the GNU General Public License v2 - -depend() { - before xdm - after kogaionlive - need dbus -} - -start() { - ebegin "Configuring the installer" - /usr/libexec/installer-gui.sh - eend $? -} diff --git a/installer-text b/installer-text deleted file mode 100644 index faada20..0000000 --- a/installer-text +++ /dev/null @@ -1,13 +0,0 @@ -#!/sbin/runscript -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after * -} - -start() { - ebegin "Configuring the text installer" - /usr/libexec/installer-text.sh - eend $? -} diff --git a/kogaionlive b/kogaionlive deleted file mode 100644 index 97543eb..0000000 --- a/kogaionlive +++ /dev/null @@ -1,14 +0,0 @@ -#!/sbin/runscript -# Copyright 2004-2013 Sabayon -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after x-setup - before xdm -} - -start() { - ebegin "Preparing Live system..." - /usr/libexec/kogaionlive.sh - eend $? -} diff --git a/x-setup-init.d b/x-setup-init.d deleted file mode 100644 index 12f201a..0000000 --- a/x-setup-init.d +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/runscript -# Copyright 2009-2013 Sabayon -# Copyright 2013 Kogaion -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after mtab - before hostname - before xdm -} - - - -start() { - . /sbin/kogaion-functions.sh - - ebegin "Configuring GPUs and input devices" - if kogaion_is_live; then - /sbin/gpu-configuration > /dev/null - eend 0 - return 0 - fi - - /usr/libexec/x-setup.sh > /dev/null - eend ${?} -} |