summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-01-17 23:54:33 -0300
committerDavid P <megver83@parabola.nu>2020-01-17 23:54:33 -0300
commit6f42022336f1a04322e442daaaf64b0cc211ca15 (patch)
tree50fe2bf1fb8792b98a189bf4e78770c5a9a4a5f4
parent1d1dbcae748e0d90c2394b8f5ccb13fc0a42f3c4 (diff)
remove runit support
I'll drop it from [pcr] Signed-off-by: David P <megver83@parabola.nu>
-rwxr-xr-xconfigs/lxde-openrc/build.sh6
-rwxr-xr-xconfigs/profile-openrc/build.sh6
-rwxr-xr-xconfigs/profile/build.sh6
-rwxr-xr-xconfigs/talkingparabola/build.sh6
-rwxr-xr-xparabolaiso/mkparabolaiso3
5 files changed, 5 insertions, 22 deletions
diff --git a/configs/lxde-openrc/build.sh b/configs/lxde-openrc/build.sh
index c4f2941..8b115b1 100755
--- a/configs/lxde-openrc/build.sh
+++ b/configs/lxde-openrc/build.sh
@@ -19,14 +19,10 @@ script_path=$(readlink -f ${0%/*})
# Init system. Options are:
# - openrc
-# - runit
# - sysvinit
# - systemd
#
-# All inits, except for systemd, use OpenRC as the
-# daemon manager, so for example runit is in fact
-# runit + OpenRC. If this variable is left unset,
-# it will default to systemd
+# sysvinit uses OpenRC as service manager
init=openrc
_usage ()
diff --git a/configs/profile-openrc/build.sh b/configs/profile-openrc/build.sh
index 81736de..fd0de53 100755
--- a/configs/profile-openrc/build.sh
+++ b/configs/profile-openrc/build.sh
@@ -18,14 +18,10 @@ script_path=$(readlink -f ${0%/*})
# Init system. Options are:
# - openrc
-# - runit
# - sysvinit
# - systemd
#
-# All inits, except for systemd, use OpenRC as the
-# daemon manager, so for example runit is in fact
-# runit + OpenRC. If this variable is left unset,
-# it will default to systemd
+# sysvinit uses OpenRC as service manager
init=openrc
_usage ()
diff --git a/configs/profile/build.sh b/configs/profile/build.sh
index d226736..72fdee0 100755
--- a/configs/profile/build.sh
+++ b/configs/profile/build.sh
@@ -18,14 +18,10 @@ script_path=$(readlink -f ${0%/*})
# Init system. Options are:
# - openrc
-# - runit
# - sysvinit
# - systemd
#
-# All inits, except for systemd, use OpenRC as the
-# daemon manager, so for example runit is in fact
-# runit + OpenRC. If this variable is left unset,
-# it will default to systemd
+# sysvinit uses OpenRC as service manager
init=systemd
umask 0022
diff --git a/configs/talkingparabola/build.sh b/configs/talkingparabola/build.sh
index e8ec7e4..475f447 100755
--- a/configs/talkingparabola/build.sh
+++ b/configs/talkingparabola/build.sh
@@ -18,14 +18,10 @@ script_path=$(readlink -f ${0%/*})
# Init system. Options are:
# - openrc
-# - runit
# - sysvinit
# - systemd
#
-# All inits, except for systemd, use OpenRC as the
-# daemon manager, so for example runit is in fact
-# runit + OpenRC. If this variable is left unset,
-# it will default to systemd
+# sysvinit uses OpenRC as service manager
init=systemd
umask 0022
diff --git a/parabolaiso/mkparabolaiso b/parabolaiso/mkparabolaiso
index d02751f..cec2899 100755
--- a/parabolaiso/mkparabolaiso
+++ b/parabolaiso/mkparabolaiso
@@ -43,12 +43,11 @@ _msg_error() {
}
_chroot_init() {
- local common="base syslinux systemd-dummy systemd-libs-dummy"
+ local common="base syslinux elogind libelogind"
mkdir -p ${work_dir}/airootfs
case $init in
openrc) _pacman "openrc-init $common" ;;
- runit) _pacman "runit-replaceinit $common" ;;
sysvinit) _pacman "openrc-sysvinit $common" ;;
systemd) _pacman "base syslinux" ;;
esac