Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3ede7a7e1a | ||
![]() |
ecf880bbba | ||
![]() |
e078f81833 | ||
![]() |
2da29b1f89 | ||
![]() |
2229c16ccb | ||
![]() |
a973077e7c | ||
![]() |
c1462043c4 | ||
![]() |
8f488f90c2 | ||
![]() |
5b60188bd1 | ||
![]() |
6467aa9404 | ||
![]() |
ac5d797b7f | ||
![]() |
1360a70b56 | ||
![]() |
46e69c496d | ||
![]() |
22f0fca0fd | ||
![]() |
069c32c3c1 | ||
![]() |
36cf18ab0f | ||
![]() |
be97f38a80 | ||
![]() |
1b297934a6 | ||
![]() |
230d30ff1a | ||
![]() |
8a2027df08 | ||
![]() |
d2a83294e0 | ||
![]() |
a221f2dd22 | ||
![]() |
905d8f07b2 | ||
![]() |
244c0a4203 |
8
_s6-svc
8
_s6-svc
@@ -4,14 +4,16 @@
|
||||
# Eric Vidal <eric@obarun.org>
|
||||
# services in /run/s6/service. Change the path variable to suit your needs.
|
||||
|
||||
path_dir=/run/s6/service
|
||||
path_dir_boot=/run/boot/service
|
||||
path_dir_user=/run/user/service
|
||||
|
||||
typeset -A opt_args
|
||||
|
||||
_path() {
|
||||
local list_dir
|
||||
list_dir=( $path_dir/* )
|
||||
compadd "$@" -a list_dir
|
||||
list_dir_boot=( $path_dir_boot/* )
|
||||
list_dir_user=( $path_dir_user/* )
|
||||
compadd "$@" -a list_dir_boot list_dir_user
|
||||
}
|
||||
|
||||
_list_common=(
|
||||
|
@@ -1,5 +1,6 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- 00 started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
# mount proc sys dev run if doesn't exist
|
||||
#import -i HOSTNAME
|
||||
@@ -30,17 +31,20 @@ if {
|
||||
}
|
||||
|
||||
# finaly mount /dev/shm /dev/pts
|
||||
forx -p third { shm pts }
|
||||
import -ui third
|
||||
if {
|
||||
foreground {
|
||||
if -n { mountpoint -q /dev/$third }
|
||||
if { s6-mkdir -p -m 0755 /dev/$third }
|
||||
s6-envdir /etc/s6/env/mount/$third
|
||||
import -ui fstype
|
||||
import -ui device
|
||||
import -ui mountpoint
|
||||
import -ui options
|
||||
s6-mount -o $options -n -t $fstype $device $mountpoint
|
||||
}
|
||||
forx -p third { shm pts }
|
||||
import -ui third
|
||||
if {
|
||||
foreground {
|
||||
if -n { mountpoint -q /dev/$third }
|
||||
if { s6-mkdir -p -m 0755 /dev/$third }
|
||||
s6-envdir /etc/s6/env/mount/$third
|
||||
import -ui fstype
|
||||
import -ui device
|
||||
import -ui mountpoint
|
||||
import -ui options
|
||||
s6-mount -o $options -n -t $fstype $device $mountpoint
|
||||
}
|
||||
}
|
||||
}
|
||||
s6-echo -- 00 successfully started
|
3
boot-rc-serv/All/contents
Normal file
3
boot-rc-serv/All/contents
Normal file
@@ -0,0 +1,3 @@
|
||||
all-Boot
|
||||
#all-User
|
||||
all-Switch
|
3
boot-rc-serv/all-Switch/contents
Normal file
3
boot-rc-serv/all-Switch/contents
Normal file
@@ -0,0 +1,3 @@
|
||||
switch-ready
|
||||
switch-svscan
|
||||
switch-user
|
@@ -7,6 +7,5 @@ rofs-Udevd
|
||||
rofs-Checkfs
|
||||
rofs-modules
|
||||
rofs-swap
|
||||
rofs-loopback
|
||||
rofs-kernruntime
|
||||
|
10
boot-rc-serv/boot-Rwfs/contents
Normal file
10
boot-rc-serv/boot-Rwfs/contents
Normal file
@@ -0,0 +1,10 @@
|
||||
rwfs-fsrw
|
||||
rwfs-loopback
|
||||
rwfs-iptables
|
||||
rwfs-nonetwork
|
||||
rwfs-localtime
|
||||
rwfs-random
|
||||
rwfs-cleanboot
|
||||
rwfs-end
|
||||
rwfs-dmesglog
|
||||
rwfs-s6local
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- checkfs-brtfs started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" USEBTRFS
|
||||
foreground {
|
||||
@@ -8,4 +9,4 @@ foreground {
|
||||
if { s6-test -x /usr/bin/btrfs }
|
||||
btrfs device scan
|
||||
}
|
||||
true
|
||||
s6-echo -- checkfs-brtfs successfully started
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- checkfs-dmraid started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" USEDMRAID
|
||||
foreground {
|
||||
@@ -8,4 +9,4 @@ foreground {
|
||||
if { s6-test -x /usr/bin/dmraid }
|
||||
dmraid -i -ay
|
||||
}
|
||||
true
|
||||
s6-echo -- checkfs-dmraid successfully started
|
21
boot-rc-serv/checkfs-fscheck/up
Normal file
21
boot-rc-serv/checkfs-fscheck/up
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- checkfs-fsckeck started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" FORCECHCK
|
||||
if -t {
|
||||
if { s6-test $FORCECHCK = yes }
|
||||
redirfd -w 1 /dev/console
|
||||
if { s6-echo -- Check of filesystem was asked, please wait }
|
||||
if { fsck -A -T -a -f noopts=_netdev }
|
||||
if { s6-echo -- Filesystem checked }
|
||||
redirfd -w 1 /run/s6/service/s6-svscan-log/fifo
|
||||
s6-true
|
||||
}
|
||||
# if partition is checked, fsck return a fail exit
|
||||
# and a crash occurs, so whatever happens with fsck, the output need to be a success
|
||||
if -t {
|
||||
fsck -A -T -a noopts=_netdev
|
||||
}
|
||||
wait { }
|
||||
s6-echo -- checkfs-fscheck successfully started
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-cgroups started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" CGROUPS
|
||||
foreground {
|
||||
@@ -16,4 +17,4 @@ foreground {
|
||||
if { s6-mkdir /sys/fs/cgroup/${i} }
|
||||
s6-mount -t cgroup -o ${i} -- cgroup /sys/fs/cgroup/${i}
|
||||
}
|
||||
true
|
||||
s6-echo -- rofs-cgroups successfully started
|
@@ -1 +1,2 @@
|
||||
rofs-kernmod
|
||||
rofs-Udevd
|
19
boot-rc-serv/rofs-console/up
Normal file
19
boot-rc-serv/rofs-console/up
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-console started }
|
||||
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" KEYMAP
|
||||
import -D "" FONT
|
||||
import -D "" FONT_MAP
|
||||
import -D "" FONT_UNIMAP
|
||||
foreground {
|
||||
loadkeys -q -u $KEYMAP
|
||||
}
|
||||
foreground {
|
||||
forx index { 0 1 2 3 4 5 6 7 8 9 10 }
|
||||
import -u index
|
||||
setfont -m $FONT_MAP -u $FONT_UNIMAP $FONT -C /dev/tty${index}
|
||||
}
|
||||
s6-echo -- rofs-console successfully started
|
15
boot-rc-serv/rofs-hardclock/up
Normal file
15
boot-rc-serv/rofs-hardclock/up
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-hardclock started }
|
||||
foreground {
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" TZ
|
||||
import -D "" HARDWARECLOCK
|
||||
pipeline -d { echo $HARDWARECLOCK }
|
||||
pipeline { tr A-Z a-z }
|
||||
forstdin -- clock
|
||||
import -iu clock
|
||||
hwclock --systz --${clock} --noadjfile
|
||||
}
|
||||
s6-echo -- rofs-hardclock successfully started
|
14
boot-rc-serv/rofs-kernmod/up
Normal file
14
boot-rc-serv/rofs-kernmod/up
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-kermod started }
|
||||
foreground {
|
||||
pipeline -d { kmod static-nodes }
|
||||
pipeline { s6-grep -F -- Module: }
|
||||
pipeline { s6-cut -d":" -f2 }
|
||||
pipeline { s6-cut -d" " -f2 }
|
||||
forstdin -d"\n" -- mod
|
||||
import -iu mod
|
||||
modprobe $mod
|
||||
}
|
||||
s6-echo -- rofs-kermod successfully started
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/execlineb -P
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-kernruntime started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" KERNELRUNTIME
|
||||
foreground {
|
||||
@@ -9,4 +10,4 @@ foreground {
|
||||
if { s6-test -e /etc/sysctl.conf }
|
||||
sysctl -p /etc/sysctl.conf
|
||||
}
|
||||
true
|
||||
s6-echo -- rofs-kernruntime successfully started
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-modules started }
|
||||
foreground {
|
||||
if { s6-test -e /etc/s6/env/s6-conf/MODULES }
|
||||
redirfd -r 0 /etc/s6/env/s6-conf/MODULES
|
||||
@@ -11,4 +12,4 @@ foreground {
|
||||
modprobe -ab $mods
|
||||
}
|
||||
}
|
||||
true
|
||||
s6-echo -- rofs-modules successfully started
|
@@ -1,10 +1,11 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rofs-swap started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" USESWAP
|
||||
foreground {
|
||||
if { s6-test $USESWAP = yes }
|
||||
swapon -a
|
||||
}
|
||||
true
|
||||
s6-echo -- rofs-swap successfully started
|
@@ -1,6 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-cleanboot started }
|
||||
if -t { install -m0664 -o root -g utmp /dev/null /run/utmp }
|
||||
|
||||
if -nt { s6-test -e /var/log/wtmp }
|
||||
@@ -8,4 +9,5 @@ if -t { install -m0664 -o root -g utmp /dev/null /var/log/wtmp }
|
||||
|
||||
if -nt { s6-test -e /var/log/btmp }
|
||||
if -t { install -m0600 -o root -g utmp /dev/null /var/log/btmp }
|
||||
install -dm1777 /tmp/.X11-unix /tmp/.ICE-unix
|
||||
if -t { install -dm1777 /tmp/.X11-unix /tmp/.ICE-unix }
|
||||
s6-echo -- rwfs-cleanboot successfully started
|
1
boot-rc-serv/rwfs-dmesglog/dependencies
Normal file
1
boot-rc-serv/rwfs-dmesglog/dependencies
Normal file
@@ -0,0 +1 @@
|
||||
rwfs-end
|
8
boot-rc-serv/rwfs-dmesglog/up
Normal file
8
boot-rc-serv/rwfs-dmesglog/up
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-dmesglog started }
|
||||
foreground {
|
||||
redirfd -w 1 /var/log/dmesg.log
|
||||
dmesg
|
||||
}
|
||||
s6-echo -- rwfs-dmesglog successfully started
|
@@ -1,6 +1,7 @@
|
||||
rwfs-fsrw
|
||||
rwfs-loopback
|
||||
rwfs-iptables
|
||||
rwfs-nonetwork
|
||||
rwfs-localtime
|
||||
rwfs-random
|
||||
rwfs-cleanboot
|
||||
rwfs-dmesglog
|
5
boot-rc-serv/rwfs-fsrw/up
Normal file
5
boot-rc-serv/rwfs-fsrw/up
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-fsrw started }
|
||||
if { s6-mount -o remount,rw / / }
|
||||
s6-echo -- rwfs-fsrw successfully started
|
2
boot-rc-serv/rwfs-iptables/dependencies
Normal file
2
boot-rc-serv/rwfs-iptables/dependencies
Normal file
@@ -0,0 +1,2 @@
|
||||
rwfs-fsrw
|
||||
rwfs-loopback
|
17
boot-rc-serv/rwfs-iptables/down
Normal file
17
boot-rc-serv/rwfs-iptables/down
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" IPTABLES
|
||||
import -D "" IP6TABLES
|
||||
foreground {
|
||||
if { s6-test $IPTABLES = yes }
|
||||
if { s6-echo -- Flushing iptables }
|
||||
/usr/lib/iptables/scripts/iptables-flush
|
||||
|
||||
}
|
||||
foreground {
|
||||
if { s6-test $IP6TABLES = yes }
|
||||
if { s6-echo -- Flushing ip6tables }
|
||||
/usr/lib/iptables/scripts/iptables-flush 6
|
||||
}
|
||||
s6-true
|
22
boot-rc-serv/rwfs-iptables/up
Normal file
22
boot-rc-serv/rwfs-iptables/up
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-iptables started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" IPTABLES
|
||||
import -D "" IP6TABLES
|
||||
foreground {
|
||||
if { s6-test $IPTABLES = yes }
|
||||
if { s6-test -e /etc/iptables/iptables.rules }
|
||||
if { s6-echo -- Activing iptables }
|
||||
if { iptables-restore /etc/iptables/iptables.rules }
|
||||
s6-echo -- Iptables actived
|
||||
}
|
||||
foreground {
|
||||
if { s6-test $IP6TABLES = yes }
|
||||
if { s6-test -e /etc/iptables/ip6tables.rules }
|
||||
if { s6-echo -- Activing ip6tables }
|
||||
ip6tables-restore /etc/iptables/ip6tables.rules
|
||||
s6-echo -- Ip6tables actived
|
||||
}
|
||||
s6-echo -- rwfs-iptables successfully started
|
8
boot-rc-serv/rwfs-localtime/up
Normal file
8
boot-rc-serv/rwfs-localtime/up
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-localtime started }
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
import -D "" TZ
|
||||
if { s6-ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime }
|
||||
s6-echo -- rwfs-localtime successfully started
|
6
boot-rc-serv/rwfs-loopback/up
Normal file
6
boot-rc-serv/rwfs-loopback/up
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-loopback started }
|
||||
if { ip link set up dev lo }
|
||||
s6-echo -- rwfs-loopback successfully started
|
6
boot-rc-serv/rwfs-nonetwork/up
Normal file
6
boot-rc-serv/rwfs-nonetwork/up
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- rwfs-nonetwork started }
|
||||
if { mount -a -t "nosysfs,nonfs,nonfs4,nosmbfs,nocifs" -O no_netdev }
|
||||
s6-echo -- rwfs-nonetwork successfully started
|
@@ -1 +1,2 @@
|
||||
rwfs-fsrw
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
|
||||
if { s6-echo -- rwfs-random started }
|
||||
foreground {
|
||||
cp /var/lib/random-seed /dev/urandom
|
||||
}
|
||||
@@ -20,4 +20,5 @@ if -t {
|
||||
|
||||
umask 077
|
||||
redirfd -w 1 /dev/null
|
||||
dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=$bytes
|
||||
if { dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=$bytes }
|
||||
s6-echo -- rwfs-random successfully started
|
1
boot-rc-serv/rwfs-s6local/dependencies
Normal file
1
boot-rc-serv/rwfs-s6local/dependencies
Normal file
@@ -0,0 +1 @@
|
||||
rwfs-dmesglog
|
1
boot-rc-serv/rwfs-s6local/type
Normal file
1
boot-rc-serv/rwfs-s6local/type
Normal file
@@ -0,0 +1 @@
|
||||
oneshot
|
7
boot-rc-serv/rwfs-s6local/up
Normal file
7
boot-rc-serv/rwfs-s6local/up
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
s6-envdir /etc/s6/env/s6-conf
|
||||
importas -D "" S6LOCAL S6LOCAL
|
||||
ifelse -X { s6-test $S6LOCAL = yes }
|
||||
{ exec -c /etc/s6/data/scripts/s6.local }
|
||||
s6-echo -- s6.local desactived
|
1
boot-rc-serv/switch-ready/dependencies
Normal file
1
boot-rc-serv/switch-ready/dependencies
Normal file
@@ -0,0 +1 @@
|
||||
all-Boot
|
1
boot-rc-serv/switch-ready/type
Normal file
1
boot-rc-serv/switch-ready/type
Normal file
@@ -0,0 +1 @@
|
||||
oneshot
|
7
boot-rc-serv/switch-ready/up
Normal file
7
boot-rc-serv/switch-ready/up
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- start switch-presvscan }
|
||||
if { s6-mkdir -p -m 0755 /run/user/service }
|
||||
forbacktickx -p -0 serv { s6-ls -0 /etc/s6-serv/enabled/classic }
|
||||
importas -u serv serv
|
||||
s6-ln -s -- /etc/s6-serv/enabled/classic/${serv} /run/user/service
|
1
boot-rc-serv/switch-svscan/dependencies
Normal file
1
boot-rc-serv/switch-svscan/dependencies
Normal file
@@ -0,0 +1 @@
|
||||
switch-ready
|
@@ -1,4 +1,3 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
fdmove -c 2 1
|
||||
ip link set up dev lo
|
||||
s6-svscan -t0 /run/user/service
|
2
boot-rc-serv/switch-user/dependencies
Normal file
2
boot-rc-serv/switch-user/dependencies
Normal file
@@ -0,0 +1,2 @@
|
||||
switch-ready
|
||||
switch-svscan
|
2
boot-rc-serv/switch-user/down
Normal file
2
boot-rc-serv/switch-user/down
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
s6-rc -l /run/user-rc -da change
|
1
boot-rc-serv/switch-user/type
Normal file
1
boot-rc-serv/switch-user/type
Normal file
@@ -0,0 +1 @@
|
||||
oneshot
|
6
boot-rc-serv/switch-user/up
Normal file
6
boot-rc-serv/switch-user/up
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- switch-user started }
|
||||
if { s6-rc-init -c /etc/s6-serv/enabled/rc/compiled/current -l /run/user-rc /run/user/service }
|
||||
if { s6-rc -l /run/user-rc -u change All }
|
||||
s6-echo -- switch-user successfully started
|
@@ -1,5 +1,6 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- udevd-udev started }
|
||||
exec -c
|
||||
udevd
|
||||
|
@@ -1,4 +1,5 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
#fdmove -c 2 1
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- udevd-udevadm started }
|
||||
s6-devd
|
||||
/usr/bin/udevadm settle
|
1
boot-rc-serv/udevd-udevadm/type
Normal file
1
boot-rc-serv/udevd-udevadm/type
Normal file
@@ -0,0 +1 @@
|
||||
longrun
|
1
boot-rc-serv/udevd-udevrules/type
Normal file
1
boot-rc-serv/udevd-udevrules/type
Normal file
@@ -0,0 +1 @@
|
||||
oneshot
|
@@ -1,6 +1,8 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
fdmove -c 2 1
|
||||
if { s6-echo -- udevd-udevrules started }
|
||||
foreground {
|
||||
if { udevadm trigger --action=add --type=subsystems }
|
||||
udevadm trigger --action=add --type=devices
|
||||
}
|
||||
s6-echo -- udevd-udevrules successfully started
|
4
boot-serv/service/.s6-svscan/SIGHUP
Executable file
4
boot-serv/service/.s6-svscan/SIGHUP
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/local/bin/execlineb -P
|
||||
|
||||
foreground { /etc/s6/stage2.tini }
|
||||
s6-svscanctl -h -- /run/boot/service
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user