8 lines
60 B
Bash
8 lines
60 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
runsvdir /etc/system &
|
||
|
|
||
|
exec /tini -- $*
|