mirror of
https://github.com/hectorm/docker-qemu-reactos
synced 2025-01-09 18:46:31 +00:00
10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
# Create ReactOS disk
|
||
|
qemu-img create -f "${QEMU_DISK_FORMAT}" /var/lib/qemu/images/reactos.img "${QEMU_DISK_SIZE}"
|
||
|
|
||
|
# Start all services
|
||
|
exec runsvdir -P /etc/service/
|