about summary refs log tree commit diff
path: root/1
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-08-15 07:43:14 +0200
committerJuan RP <xtraeme@gmail.com>2014-08-15 07:43:14 +0200
commit9022506f35fbf31c1d5940d49be3576ca07f780a (patch)
tree5933a686b6f87132fcb35cabca4966bb0ecd0690 /1
parenta507f6309c61c60b2d73c0e93f83e4c7bad15315 (diff)
downloadrunit-void-9022506f35fbf31c1d5940d49be3576ca07f780a.tar.gz
runit-void-9022506f35fbf31c1d5940d49be3576ca07f780a.tar.xz
runit-void-9022506f35fbf31c1d5940d49be3576ca07f780a.zip
Make /etc/runit/{reboot,stopit} symlinks to /run/runit.
The real files are created in stage 1, this way a read-only rootfs can
be used to reboot/halt properly the system.
Diffstat (limited to '1')
-rwxr-xr-x15
1 files changed, 3 insertions, 2 deletions
diff --git a/1 b/1
index f7e4ee1..1c87c06 100755
--- a/1
+++ b/1
@@ -17,7 +17,8 @@ done
 
 dmesg >/var/log/dmesg.log
 
-install -m100 /dev/null /etc/runit/reboot
-install -m100 /dev/null /etc/runit/stopit
+mkdir -p /run/runit
+install -m100 /dev/null /run/runit/reboot
+install -m100 /dev/null /run/runit/stopit
 
 msg "Initialization complete, running stage 2...\n"