mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
25 lines
476 B
Bash
Executable File
25 lines
476 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
[ -d /dev/net ] ||
|
|
mkdir -p /dev/net
|
|
[ -c /dev/net/tun ] ||
|
|
mknod /dev/net/tun c 10 200
|
|
|
|
cd /app
|
|
|
|
DATA_DIRECTORY=/data
|
|
if [ -d "$DATA_DIRECTORY" ]; then
|
|
cp bin/enter.sh $DATA_DIRECTORY/enter.sh
|
|
chmod +x $DATA_DIRECTORY/enter.sh
|
|
fi
|
|
|
|
mkdir -p /var/log/supervisor && touch /var/log/supervisor/supervisord.log
|
|
|
|
/usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
|
|
|
supervisorctl start resin-supervisor
|
|
|
|
tail -f /var/log/supervisor/supervisord.log
|