12 lines
179 B
Bash
Executable file
12 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$#" = "0" ]; then
|
|
step "Starting OpenRC"
|
|
rm -rf /run/openrc 2>/dev/null
|
|
mkdir /run/openrc
|
|
touch /run/openrc/softlevel
|
|
exec /sbin/openrc
|
|
else
|
|
"$@"
|
|
fi
|
|
|