From 4bcdcf77a80b1fe00aa4f6bb46d9ed8dbb75bd2b Mon Sep 17 00:00:00 2001 From: David P Date: Fri, 21 Dec 2018 13:52:33 -0300 Subject: Add sysvinit support Signed-off-by: David P --- configs/lxde-openrc/build.sh | 6 +++++- configs/profile-openrc/build.sh | 6 +++++- configs/profile/build.sh | 6 +++++- configs/talkingparabola/build.sh | 6 +++++- parabolaiso/mkparabolaiso | 1 + 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/configs/lxde-openrc/build.sh b/configs/lxde-openrc/build.sh index d7aefa5..c19cef8 100755 --- a/configs/lxde-openrc/build.sh +++ b/configs/lxde-openrc/build.sh @@ -20,9 +20,13 @@ script_path=$(readlink -f ${0%/*}) # Init system. Options are: # - openrc # - runit +# - sysvinit # - systemd # -# Default is 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 init=openrc _usage () diff --git a/configs/profile-openrc/build.sh b/configs/profile-openrc/build.sh index 5d0e424..eae0872 100755 --- a/configs/profile-openrc/build.sh +++ b/configs/profile-openrc/build.sh @@ -19,9 +19,13 @@ script_path=$(readlink -f ${0%/*}) # Init system. Options are: # - openrc # - runit +# - sysvinit # - systemd # -# Default is 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 init=openrc _usage () diff --git a/configs/profile/build.sh b/configs/profile/build.sh index bba82ce..1ff942c 100755 --- a/configs/profile/build.sh +++ b/configs/profile/build.sh @@ -19,9 +19,13 @@ script_path=$(readlink -f ${0%/*}) # Init system. Options are: # - openrc # - runit +# - sysvinit # - systemd # -# Default is 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 init=systemd umask 0022 diff --git a/configs/talkingparabola/build.sh b/configs/talkingparabola/build.sh index d1750b6..54eb1de 100755 --- a/configs/talkingparabola/build.sh +++ b/configs/talkingparabola/build.sh @@ -19,9 +19,13 @@ script_path=$(readlink -f ${0%/*}) # Init system. Options are: # - openrc # - runit +# - sysvinit # - systemd # -# Default is 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 init=systemd umask 0022 diff --git a/parabolaiso/mkparabolaiso b/parabolaiso/mkparabolaiso index 0b1ccef..590e8d5 100755 --- a/parabolaiso/mkparabolaiso +++ b/parabolaiso/mkparabolaiso @@ -47,6 +47,7 @@ _chroot_init() { case $init in openrc) _pacman "base-openrc openrc-init syslinux" ;; runit) _pacman "base-openrc runit syslinux" ;; + sysvinit) _pacman "base-openrc openrc-sysvinit syslinux" ;; systemd) _pacman "base syslinux" ;; esac } -- cgit v1.2.2