about summary refs log tree commit diff
path: root/foo/etc/runit/2
diff options
context:
space:
mode:
Diffstat (limited to 'foo/etc/runit/2')
-rwxr-xr-xfoo/etc/runit/224
1 files changed, 24 insertions, 0 deletions
diff --git a/foo/etc/runit/2 b/foo/etc/runit/2
new file mode 100755
index 0000000..c793759
--- /dev/null
+++ b/foo/etc/runit/2
@@ -0,0 +1,24 @@
+#!/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: ...........................................................................................................................................................................................................................................................................................................................................................................................................'