diff options
author | Juan RP <xtraeme@gmail.com> | 2014-08-15 07:43:14 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-08-15 07:43:14 +0200 |
commit | 9022506f35fbf31c1d5940d49be3576ca07f780a (patch) | |
tree | 5933a686b6f87132fcb35cabca4966bb0ecd0690 /1 | |
parent | a507f6309c61c60b2d73c0e93f83e4c7bad15315 (diff) | |
download | runit-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-x | 1 | 5 |
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" |