15 lines
205 B
Bash
15 lines
205 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ "$*" != "" ]; then
|
||
|
exec $@
|
||
|
fi
|
||
|
|
||
|
echo "Starting Sahana Eden..."
|
||
|
|
||
|
# Upgrade database
|
||
|
/usr/local/bin/migrate norestart
|
||
|
|
||
|
# Exec into s6 supervisor
|
||
|
exec /bin/s6-svscan /etc/services.d
|