about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--foo/etc/rc.conf22
-rwxr-xr-xfoo/etc/runit/199
-rwxr-xr-xfoo/etc/runit/224
-rwxr-xr-xfoo/etc/runit/345
-rwxr-xr-xfoo/etc/runit/ctrlaltdel11
l---------foo/etc/runit/runsvdir/current1
l---------foo/etc/runit/runsvdir/default/agetty-tty11
l---------foo/etc/runit/runsvdir/default/agetty-tty21
l---------foo/etc/runit/runsvdir/default/agetty-tty31
l---------foo/etc/runit/runsvdir/default/agetty-tty41
l---------foo/etc/runit/runsvdir/default/agetty-tty51
l---------foo/etc/runit/runsvdir/default/agetty-tty61
l---------foo/etc/runit/runsvdir/default/avahi-daemon1
l---------foo/etc/runit/runsvdir/default/dbus1
l---------foo/etc/runit/runsvdir/default/dcron1
l---------foo/etc/runit/runsvdir/default/dhcpcd1
l---------foo/etc/runit/runsvdir/single/sulogin1
-rwxr-xr-xfoo/etc/sv/agetty-generic/finish4
-rwxr-xr-xfoo/etc/sv/agetty-generic/run3
l---------foo/etc/sv/agetty-tty1/finish1
-rwxr-xr-xfoo/etc/sv/agetty-tty1/run3
l---------foo/etc/sv/agetty-tty1/supervise1
l---------foo/etc/sv/agetty-tty2/finish1
l---------foo/etc/sv/agetty-tty2/run1
l---------foo/etc/sv/agetty-tty2/supervise1
l---------foo/etc/sv/agetty-tty3/finish1
l---------foo/etc/sv/agetty-tty3/run1
l---------foo/etc/sv/agetty-tty3/supervise1
l---------foo/etc/sv/agetty-tty4/finish1
l---------foo/etc/sv/agetty-tty4/run1
l---------foo/etc/sv/agetty-tty4/supervise1
l---------foo/etc/sv/agetty-tty5/finish1
l---------foo/etc/sv/agetty-tty5/run1
l---------foo/etc/sv/agetty-tty5/supervise1
l---------foo/etc/sv/agetty-tty6/finish1
l---------foo/etc/sv/agetty-tty6/run1
l---------foo/etc/sv/agetty-tty6/supervise1
l---------foo/etc/sv/agetty-ttyS0/finish1
-rwxr-xr-xfoo/etc/sv/agetty-ttyS0/run3
l---------foo/etc/sv/agetty-ttyS0/supervise1
-rwxr-xr-xfoo/etc/sv/alsa/finish3
-rwxr-xr-xfoo/etc/sv/alsa/run4
l---------foo/etc/sv/alsa/supervise1
-rwxr-xr-xfoo/etc/sv/avahi-daemon/run4
l---------foo/etc/sv/avahi-daemon/supervise1
-rwxr-xr-xfoo/etc/sv/dbus/run4
l---------foo/etc/sv/dbus/supervise1
-rwxr-xr-xfoo/etc/sv/dcron/log/run2
l---------foo/etc/sv/dcron/log/supervise1
-rwxr-xr-xfoo/etc/sv/dcron/run3
l---------foo/etc/sv/dcron/supervise1
-rwxr-xr-xfoo/etc/sv/dhcpcd/run3
l---------foo/etc/sv/dhcpcd/supervise1
-rwxr-xr-xfoo/etc/sv/ntpd/log/run2
l---------foo/etc/sv/ntpd/log/supervise1
-rwxr-xr-xfoo/etc/sv/ntpd/run3
l---------foo/etc/sv/ntpd/supervise1
-rwxr-xr-xfoo/etc/sv/rsyslogd/run3
l---------foo/etc/sv/rsyslogd/supervise1
-rwxr-xr-xfoo/etc/sv/sshd/run5
l---------foo/etc/sv/sshd/supervise1
-rwxr-xr-xfoo/etc/sv/sulogin/run2
l---------foo/etc/sv/sulogin/supervise1
63 files changed, 0 insertions, 294 deletions
diff --git a/foo/etc/rc.conf b/foo/etc/rc.conf
deleted file mode 100644
index ac58608..0000000
--- a/foo/etc/rc.conf
+++ /dev/null
@@ -1,22 +0,0 @@
-# /etc/rc.conf - system configuration for void
-
-# Set RTC to UTC or local.
-HARDWARECLOCK="UTC"
-
-# Set timezone, availables timezones at /usr/share/zoneinfo.
-TIMEZONE="Europe/Madrid"
-
-# Keymap to load, see loadkeys(8).
-KEYMAP="es"
-
-# Console font to load, see setfont(8).
-CONSOLEFONT="lat9w-16"
-
-# Console map to load, see setfont(8).
-#CONSOLEMAP=
-
-# Font unimap to load, see setfont(8).
-#UNIMAP=
-
-# Kernel modules to load, delimited by blanks.
-#MODULES=""
diff --git a/foo/etc/runit/1 b/foo/etc/runit/1
deleted file mode 100755
index c498ac7..0000000
--- a/foo/etc/runit/1
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/bin/sh
-# vim: set ts=4 sw=4 et:
-
-PATH=/usr/bin:/usr/sbin
-
-echo "Welcome to Void!"
-
-. /etc/rc.conf
-
-echo "Mounting pseudo-filesystems..."
-
-mountpoint -q /proc || mount -t proc proc /proc -o nosuid,noexec,nodev
-mountpoint -q /sys || mount -t sysfs sys /sys -o nosuid,noexec,nodev
-mountpoint -q /run || mount -t tmpfs run /run -o mode=0755,nosuid,nodev
-mountpoint -q /dev || mount -t devtmpfs dev /dev -o mode=0755,nosuid
-
-mkdir -p -m0755 /run/runit /run/lvm /run/user /dev/pts /dev/shm
-mountpoint -q /dev/pts || mount -n -t devpts devpts /dev/pts -o mode=0620,gid=5,nosuid,noexec
-mountpoint -q /dev/shm || mount -n -t tmpfs shm /dev/shm -o mode=1777,nosuid,nodev
-
-echo "Remounting rootfs read-only..."
-mount -o remount,ro /
-
-echo "Setting up console fonts..."
-for i in /dev/tty[0-6]; do
-    unicode_start < $i
-    [ -n "$CONSOLEFONT" ] && setfont ${CONSOLEMAP:+-m $CONSOLEMAP} $CONSOLEFONT -C $i
-done
-
-echo "Loading keymap ${KEYMAP:-us}..."
-loadkeys -q -u ${KEYMAP:-us}
-
-if [ -n "$HARDWARECLOCK" ]; then
-    echo "Setting up RTC to ${HARDWARECLOCK}..."
-    TZ=$TIMEZONE hwclock --systz \
-        ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z) --noadjfile}
-fi
-
-if [ -x /usr/lib/systemd/systemd-udevd ]; then
-    _udevd=/usr/lib/systemd/systemd-udevd
-elif [ -x /usr/sbin/udevd ]; then
-    _udevd=/usr/sbin/udevd
-else
-    echo "WARNING: cannot find udevd!"
-fi
-
-if [ -n "${_udevd}" ]; then
-    echo "Starting udevd and waiting for devices to settle..."
-    ${_udevd} --daemon
-    udevadm trigger --action=add --type=subsystems
-    udevadm trigger --action=add --type=devices
-    udevadm settle
-fi
-
-echo "Setting up loopback interface..."
-ip link set up dev lo
-
-echo "Setting up hostname..."
-if [ -n "$HOSTNAME" ]; then
-    echo "$HOSTNAME" > /proc/sys/kernel/hostname
-elif [ -r /etc/hostname ]; then
-    cat /etc/hostname > /proc/sys/kernel/hostname
-fi
-
-echo "Checking filesystems..."
-fsck -A -T -a -t noopts=_netdev
-
-echo "Mounting rootfs read-write..."
-mount -o remount,rw /
-
-echo "Mounting all non-network filesystems..."
-mount -a -t "nosysfs,nonfs,nonfs4,nosmbfs,nocifs" -O no_netdev
-
-echo "Initializing swap..."
-swapon -a
-
-if [ -n "$TIMEZONE" ]; then
-    echo "Setting up timezone to ${TIMEZONE}..."
-    ln -sf "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime
-fi
-
-echo "Initializing random seed..."
-cp /var/lib/random-seed /dev/urandom >/dev/null 2>&1 || true
-( umask 077; dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 >/dev/null 2>&1 )
-
-install -m0664 -o root -g utmp /dev/null /run/utmp
-rm -f /etc/nologin /forcefsck /forcequotacheck /fastboot
-
-if [ -n "$MODULES" ]; then
-    echo "Loading kernel modules..."
-    modprobe -ab ${MODULES}
-fi
-
-dmesg >/var/log/dmesg.log
-
-install -m0 /dev/null /etc/runit/reboot
-install -m0 /dev/null /etc/runit/stopit
-
-echo "Initialization complete, starting services..."
diff --git a/foo/etc/runit/2 b/foo/etc/runit/2
deleted file mode 100755
index c793759..0000000
--- a/foo/etc/runit/2
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# vim: set ts=4 sw=4 et:
-
-PATH=/usr/bin:/usr/sbin
-
-runlevel=default
-for arg in $(cat /proc/cmdline); do
-    case $arg in
-        single) echo "Initializing single user mode..."; runlevel=single;;
-    esac
-done
-
-# Setup first tty as unicode again, stage1 does not work correctly for tty1.
-unicode_start
-
-# Create runlevel and then copy services.
-if [ -d /etc/runit/runsvdir/${runlevel} ]; then
-    mkdir -p /run/runit/runsvdir
-    cp -aP /etc/runit/runsvdir/${runlevel} /run/runit/runsvdir
-    ln -s /run/runit/runsvdir/${runlevel} /run/runit/runsvdir/current
-fi
-
-exec env - PATH=$PATH \
-    runsvdir -P /run/runit/runsvdir/current 'log: ...........................................................................................................................................................................................................................................................................................................................................................................................................'
diff --git a/foo/etc/runit/3 b/foo/etc/runit/3
deleted file mode 100755
index 577568d..0000000
--- a/foo/etc/runit/3
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-# vim: set ts=4 sw=4 et:
-
-PATH=/usr/bin:/usr/sbin
-
-. /etc/rc.conf
-
-if [ -e /run/runit/reboot ]; then
-    touch /etc/runit/reboot
-    chmod 100 /etc/runit/reboot
-fi
-
-echo "Waiting for services to stop..."
-sv -w196 force-stop /var/service/*
-sv exit /var/service/*
-
-stty onlcr
-
-echo "Saving random seed..."
-dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 >/dev/null 2>&1
-
-if [ -n "$HARDWARECLOCK" ]; then
-    hwclock --systohc ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z)}
-fi
-
-halt -w  # for utmp
-
-echo "Stopping udev..."
-udevadm control --exit
-
-echo "Sending TERM signal to processes..."
-pkill --inverse -s0,1 -TERM
-sleep 5
-echo "Sending KILL signal to processes..."
-pkill --inverse -s0,1 -KILL
-
-echo "Unmounting filesystems, disabling swap..."
-umount /tmp
-swapoff -a
-umount -r -a -t nosysfs,noproc,nodevtmpfs,notmpfs
-
-echo "Remounting rootfs read-only..."
-mount -o remount,ro /
-sleep 1
-sync
diff --git a/foo/etc/runit/ctrlaltdel b/foo/etc/runit/ctrlaltdel
deleted file mode 100755
index af70ed6..0000000
--- a/foo/etc/runit/ctrlaltdel
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-PATH=/usr/bin:/usr/sbin
-MSG="System is going down..."
-
-# We check for this file in stage3 to halt or reboot
-touch /run/runit/reboot
-
-# Proceed with shutdown process
-touch /etc/runit/stopit
-chmod 100 /etc/runit/stopit && echo "$MSG" | wall
diff --git a/foo/etc/runit/runsvdir/current b/foo/etc/runit/runsvdir/current
deleted file mode 120000
index 331d858..0000000
--- a/foo/etc/runit/runsvdir/current
+++ /dev/null
@@ -1 +0,0 @@
-default
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty1 b/foo/etc/runit/runsvdir/default/agetty-tty1
deleted file mode 120000
index 0c09cd8..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty1
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty1
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty2 b/foo/etc/runit/runsvdir/default/agetty-tty2
deleted file mode 120000
index 7c0c41b..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty2
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty2
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty3 b/foo/etc/runit/runsvdir/default/agetty-tty3
deleted file mode 120000
index d6514b8..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty3
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty3
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty4 b/foo/etc/runit/runsvdir/default/agetty-tty4
deleted file mode 120000
index b27438b..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty4
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty4
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty5 b/foo/etc/runit/runsvdir/default/agetty-tty5
deleted file mode 120000
index 311b9f7..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty5
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty5
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/agetty-tty6 b/foo/etc/runit/runsvdir/default/agetty-tty6
deleted file mode 120000
index 97ff268..0000000
--- a/foo/etc/runit/runsvdir/default/agetty-tty6
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-tty6
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/avahi-daemon b/foo/etc/runit/runsvdir/default/avahi-daemon
deleted file mode 120000
index 95977b7..0000000
--- a/foo/etc/runit/runsvdir/default/avahi-daemon
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/avahi-daemon
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/dbus b/foo/etc/runit/runsvdir/default/dbus
deleted file mode 120000
index 34c103f..0000000
--- a/foo/etc/runit/runsvdir/default/dbus
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/dbus
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/dcron b/foo/etc/runit/runsvdir/default/dcron
deleted file mode 120000
index 5487a89..0000000
--- a/foo/etc/runit/runsvdir/default/dcron
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/dcron
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/default/dhcpcd b/foo/etc/runit/runsvdir/default/dhcpcd
deleted file mode 120000
index 532d6ff..0000000
--- a/foo/etc/runit/runsvdir/default/dhcpcd
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/dhcpcd
\ No newline at end of file
diff --git a/foo/etc/runit/runsvdir/single/sulogin b/foo/etc/runit/runsvdir/single/sulogin
deleted file mode 120000
index 1a52f41..0000000
--- a/foo/etc/runit/runsvdir/single/sulogin
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/sulogin
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-generic/finish b/foo/etc/sv/agetty-generic/finish
deleted file mode 100755
index dba0186..0000000
--- a/foo/etc/sv/agetty-generic/finish
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-service=$(basename $(pwd))
-tty=${service/*-}
-exec utmpset -w $tty
diff --git a/foo/etc/sv/agetty-generic/run b/foo/etc/sv/agetty-generic/run
deleted file mode 100755
index a3e6d4b..0000000
--- a/foo/etc/sv/agetty-generic/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-tty=${PWD##*-}
-exec setsid /sbin/agetty -8 -s 38400 $tty linux
diff --git a/foo/etc/sv/agetty-tty1/finish b/foo/etc/sv/agetty-tty1/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty1/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty1/run b/foo/etc/sv/agetty-tty1/run
deleted file mode 100755
index dfca715..0000000
--- a/foo/etc/sv/agetty-tty1/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-tty=${PWD##*-}
-exec setsid /sbin/agetty -8 -s 38400 $([ $tty = tty1 ] && echo --noclear) $tty linux
diff --git a/foo/etc/sv/agetty-tty1/supervise b/foo/etc/sv/agetty-tty1/supervise
deleted file mode 120000
index a23f48f..0000000
--- a/foo/etc/sv/agetty-tty1/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty1
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty2/finish b/foo/etc/sv/agetty-tty2/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty2/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty2/run b/foo/etc/sv/agetty-tty2/run
deleted file mode 120000
index 2ebc95f..0000000
--- a/foo/etc/sv/agetty-tty2/run
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/run
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty2/supervise b/foo/etc/sv/agetty-tty2/supervise
deleted file mode 120000
index a3aee31..0000000
--- a/foo/etc/sv/agetty-tty2/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty2
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty3/finish b/foo/etc/sv/agetty-tty3/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty3/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty3/run b/foo/etc/sv/agetty-tty3/run
deleted file mode 120000
index 2ebc95f..0000000
--- a/foo/etc/sv/agetty-tty3/run
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/run
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty3/supervise b/foo/etc/sv/agetty-tty3/supervise
deleted file mode 120000
index 06d8483..0000000
--- a/foo/etc/sv/agetty-tty3/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty3
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty4/finish b/foo/etc/sv/agetty-tty4/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty4/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty4/run b/foo/etc/sv/agetty-tty4/run
deleted file mode 120000
index 2ebc95f..0000000
--- a/foo/etc/sv/agetty-tty4/run
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/run
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty4/supervise b/foo/etc/sv/agetty-tty4/supervise
deleted file mode 120000
index 1e70774..0000000
--- a/foo/etc/sv/agetty-tty4/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty4
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty5/finish b/foo/etc/sv/agetty-tty5/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty5/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty5/run b/foo/etc/sv/agetty-tty5/run
deleted file mode 120000
index 2ebc95f..0000000
--- a/foo/etc/sv/agetty-tty5/run
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/run
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty5/supervise b/foo/etc/sv/agetty-tty5/supervise
deleted file mode 120000
index a48f96b..0000000
--- a/foo/etc/sv/agetty-tty5/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty5
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty6/finish b/foo/etc/sv/agetty-tty6/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-tty6/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty6/run b/foo/etc/sv/agetty-tty6/run
deleted file mode 120000
index 2ebc95f..0000000
--- a/foo/etc/sv/agetty-tty6/run
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/run
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-tty6/supervise b/foo/etc/sv/agetty-tty6/supervise
deleted file mode 120000
index e9243a6..0000000
--- a/foo/etc/sv/agetty-tty6/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-tty6
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-ttyS0/finish b/foo/etc/sv/agetty-ttyS0/finish
deleted file mode 120000
index fa7eecd..0000000
--- a/foo/etc/sv/agetty-ttyS0/finish
+++ /dev/null
@@ -1 +0,0 @@
-/etc/sv/agetty-generic/finish
\ No newline at end of file
diff --git a/foo/etc/sv/agetty-ttyS0/run b/foo/etc/sv/agetty-ttyS0/run
deleted file mode 100755
index 0f60e37..0000000
--- a/foo/etc/sv/agetty-ttyS0/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-tty=${PWD##*-}
-exec setsid /sbin/agetty -8 -s 9600 --noclear $tty linux
diff --git a/foo/etc/sv/agetty-ttyS0/supervise b/foo/etc/sv/agetty-ttyS0/supervise
deleted file mode 120000
index cd9e77f..0000000
--- a/foo/etc/sv/agetty-ttyS0/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.agetty-ttyS0
\ No newline at end of file
diff --git a/foo/etc/sv/alsa/finish b/foo/etc/sv/alsa/finish
deleted file mode 100755
index 84e3f81..0000000
--- a/foo/etc/sv/alsa/finish
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-set -e
-exec /usr/bin/alsactl store
diff --git a/foo/etc/sv/alsa/run b/foo/etc/sv/alsa/run
deleted file mode 100755
index a376059..0000000
--- a/foo/etc/sv/alsa/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-set -e
-/usr/bin/alsactl restore
-exec chpst -b alsa pause
diff --git a/foo/etc/sv/alsa/supervise b/foo/etc/sv/alsa/supervise
deleted file mode 120000
index 30bed6b..0000000
--- a/foo/etc/sv/alsa/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.alsa
\ No newline at end of file
diff --git a/foo/etc/sv/avahi-daemon/run b/foo/etc/sv/avahi-daemon/run
deleted file mode 100755
index ba08e8e..0000000
--- a/foo/etc/sv/avahi-daemon/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-sv check dbus >/dev/null || exit 1
-echo "Starting avahi..."
-exec avahi-daemon -s
diff --git a/foo/etc/sv/avahi-daemon/supervise b/foo/etc/sv/avahi-daemon/supervise
deleted file mode 120000
index 9cd189b..0000000
--- a/foo/etc/sv/avahi-daemon/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.avahi-daemon
\ No newline at end of file
diff --git a/foo/etc/sv/dbus/run b/foo/etc/sv/dbus/run
deleted file mode 100755
index 14da8d2..0000000
--- a/foo/etc/sv/dbus/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-[ ! -d /run/dbus ] && install -m755 -g 22 -o 22 -d /run/dbus
-echo "Starting dbus..."
-exec dbus-daemon --system --nofork
diff --git a/foo/etc/sv/dbus/supervise b/foo/etc/sv/dbus/supervise
deleted file mode 120000
index f086e0e..0000000
--- a/foo/etc/sv/dbus/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.dbus
\ No newline at end of file
diff --git a/foo/etc/sv/dcron/log/run b/foo/etc/sv/dcron/log/run
deleted file mode 100755
index b36c4da..0000000
--- a/foo/etc/sv/dcron/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice
diff --git a/foo/etc/sv/dcron/log/supervise b/foo/etc/sv/dcron/log/supervise
deleted file mode 120000
index 555fc30..0000000
--- a/foo/etc/sv/dcron/log/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.dcron-log
\ No newline at end of file
diff --git a/foo/etc/sv/dcron/run b/foo/etc/sv/dcron/run
deleted file mode 100755
index bd889e7..0000000
--- a/foo/etc/sv/dcron/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-echo "Starting dcron..."
-exec crond -f 2>&1
diff --git a/foo/etc/sv/dcron/supervise b/foo/etc/sv/dcron/supervise
deleted file mode 120000
index 99d3e2a..0000000
--- a/foo/etc/sv/dcron/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.dcron
\ No newline at end of file
diff --git a/foo/etc/sv/dhcpcd/run b/foo/etc/sv/dhcpcd/run
deleted file mode 100755
index 3949484..0000000
--- a/foo/etc/sv/dhcpcd/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-echo "Starting dhcpcd..."
-exec /usr/sbin/dhcpcd -q -B 2>&1
diff --git a/foo/etc/sv/dhcpcd/supervise b/foo/etc/sv/dhcpcd/supervise
deleted file mode 120000
index 4fe4a00..0000000
--- a/foo/etc/sv/dhcpcd/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.dhcpcd
\ No newline at end of file
diff --git a/foo/etc/sv/ntpd/log/run b/foo/etc/sv/ntpd/log/run
deleted file mode 100755
index b36c4da..0000000
--- a/foo/etc/sv/ntpd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice
diff --git a/foo/etc/sv/ntpd/log/supervise b/foo/etc/sv/ntpd/log/supervise
deleted file mode 120000
index 7071288..0000000
--- a/foo/etc/sv/ntpd/log/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.ntpd-log
\ No newline at end of file
diff --git a/foo/etc/sv/ntpd/run b/foo/etc/sv/ntpd/run
deleted file mode 100755
index 35044d5..0000000
--- a/foo/etc/sv/ntpd/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-echo "Starting ntpd..."
-exec ntpd -g -u ntpd:ntpd -n
diff --git a/foo/etc/sv/ntpd/supervise b/foo/etc/sv/ntpd/supervise
deleted file mode 120000
index 77d9d0d..0000000
--- a/foo/etc/sv/ntpd/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.ntpd
\ No newline at end of file
diff --git a/foo/etc/sv/rsyslogd/run b/foo/etc/sv/rsyslogd/run
deleted file mode 100755
index 9ae41ef..0000000
--- a/foo/etc/sv/rsyslogd/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-echo "Starting rsyslogd..."
-exec rsyslogd -n
diff --git a/foo/etc/sv/rsyslogd/supervise b/foo/etc/sv/rsyslogd/supervise
deleted file mode 120000
index 1bba91f..0000000
--- a/foo/etc/sv/rsyslogd/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.rsyslogd
\ No newline at end of file
diff --git a/foo/etc/sv/sshd/run b/foo/etc/sv/sshd/run
deleted file mode 100755
index 06f36ea..0000000
--- a/foo/etc/sv/sshd/run
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-echo "Starting sshd..."
-/usr/bin/ssh-keygen -A # Will generate host keys if they don't already exist
-exec /usr/sbin/sshd -D
diff --git a/foo/etc/sv/sshd/supervise b/foo/etc/sv/sshd/supervise
deleted file mode 120000
index 1ea2704..0000000
--- a/foo/etc/sv/sshd/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.sshd
\ No newline at end of file
diff --git a/foo/etc/sv/sulogin/run b/foo/etc/sv/sulogin/run
deleted file mode 100755
index f9db040..0000000
--- a/foo/etc/sv/sulogin/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec setsid /sbin/sulogin -p </dev/tty1 >/dev/tty1 2>&1
diff --git a/foo/etc/sv/sulogin/supervise b/foo/etc/sv/sulogin/supervise
deleted file mode 120000
index 5f3d912..0000000
--- a/foo/etc/sv/sulogin/supervise
+++ /dev/null
@@ -1 +0,0 @@
-/run/runit/supervise.sulogin
\ No newline at end of file