mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 23:19:40 +00:00
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
FILEPATH=$(readlink -f "$0");
|
|
SCRIPTPATH=$(dirname "$FILEPATH");
|
|
cd "$SCRIPTPATH"
|
|
cp webvirt-* /lib/systemd/system/
|
|
cp webvirt /etc/default/
|
|
echo Run to start services \"systemctl daemon-reload\; systemctl enable --now $(ls webvirt-* | tr "\n" " ")\"
|