37 lines
714 B
Plaintext
37 lines
714 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisord.log
|
|
|
|
[program:network-setup]
|
|
command=/usr/local/bin/setup-network.sh
|
|
autostart=true
|
|
autorestart=false
|
|
startsecs=0
|
|
priority=1
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:sshd]
|
|
command=/usr/sbin/sshd -D
|
|
autostart=true
|
|
autorestart=true
|
|
priority=10
|
|
|
|
[program:qemu]
|
|
command=/usr/local/bin/start-vm.sh
|
|
autostart=true
|
|
autorestart=true
|
|
priority=20
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:novnc]
|
|
command=/usr/share/novnc/utils/novnc_proxy --vnc localhost:5900 --listen 8006
|
|
autostart=true
|
|
autorestart=true
|
|
priority=30
|