diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-05-16 14:11:45 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-05-16 14:11:45 -0300 |
commit | 337627d31ba82f132a9c583e88c0b1b0fd6506a7 (patch) | |
tree | 6c25e020bb8eb2f09ca19ae02c271c433236387c /kvmx-create | |
parent | 074b303236172221872cd950537cfd527b1ca7bb (diff) | |
download | kvmx-337627d31ba82f132a9c583e88c0b1b0fd6506a7.tar.gz kvmx-337627d31ba82f132a9c583e88c0b1b0fd6506a7.tar.bz2 |
Fix(kvmx-create): always install qemu-guest-agent
Diffstat (limited to 'kvmx-create')
-rwxr-xr-x | kvmx-create | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kvmx-create b/kvmx-create index e2cd6ab..983ebad 100755 --- a/kvmx-create +++ b/kvmx-create @@ -452,8 +452,11 @@ EOF # Basic packages $APT_INSTALL screen cron lsb-release openssl rsync + # Guest agent + $APT_INSTALL qemu-guest-agent + if [ "$spice" == "1" ]; then - $APT_INSTALL spice-vdagent qemu-guest-agent + $APT_INSTALL spice-vdagent fi # OpenSSH |