diff options
Diffstat (limited to 'core/sinit/files')
-rw-r--r-- | core/sinit/files/sinit-launch-services.boot | 4 | ||||
-rw-r--r-- | core/sinit/files/sinit.post.shutdown | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/sinit/files/sinit-launch-services.boot b/core/sinit/files/sinit-launch-services.boot index 4d4fad6a..4cbb0570 100644 --- a/core/sinit/files/sinit-launch-services.boot +++ b/core/sinit/files/sinit-launch-services.boot @@ -2,12 +2,12 @@ sinit_run_getty() { for getty in 1 2 3 4 5 6; do - ubase-box respawn /sbin/getty 38400 tty${getty} 2>&1 & + respawn /sbin/getty 38400 tty${getty} 2>&1 & done } sinit_runit() { - ubase-box respawn /usr/bin/runsvdir -P /var/service & + respawn /usr/bin/runsvdir -P /var/service & } [ "$SINIT_ENABLE_GETTY" = 1 ] && sinit_run_getty diff --git a/core/sinit/files/sinit.post.shutdown b/core/sinit/files/sinit.post.shutdown index ade9958f..4f3c793b 100644 --- a/core/sinit/files/sinit.post.shutdown +++ b/core/sinit/files/sinit.post.shutdown @@ -6,11 +6,11 @@ if [ "$SINIT_SHUTDOWN_HOOKS" = 1 ]; then case "$1" in reboot) out "Requesting system reboot..." - /usr/bin/ubase-box halt -r + halt -r ;; *) out "Requesting system poweroff..." - /usr/bin/ubase-box halt -p + halt -p ;; esac fi |