8 lines
213 B
Bash
Executable File
8 lines
213 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ ! -e /etc/s6-linux-init/current ]; then
|
|
s6-linux-init-maker /etc/s6-linux-init/current
|
|
fi
|
|
|
|
echo 's6-linux-init: Remember to add your service manager in /etc/s6-linux-init/current/scripts/*'
|