mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-13 01:30:31 +08:00
19 lines
272 B
Bash
Executable File
19 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
. ../functions.sh
|
|
|
|
|
|
cp config.txt "$FS/boot/config.txt"
|
|
pkg_install \
|
|
kvmd \
|
|
mjpg-streamer-pikvm \
|
|
nginx
|
|
|
|
cp index.html "$FS/srv/http/"
|
|
cp kvmd.yaml "$FS/etc/"
|
|
cp nginx.conf "$FS/etc/nginx/"
|
|
rpi systemctl enable kvmd
|
|
rpi systemctl enable nginx
|