e75bb2e7c3
Story: 2005265 Task: 30095 Change-Id: I9eecbe7c0a15eec2ffe1e43964cd4253fc04b91c Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
18 lines
329 B
Bash
Executable File
18 lines
329 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation
|
|
#
|
|
|
|
# install_packages.sh - install required packages
|
|
|
|
sudo apt-get install virt-manager libvirt-bin qemu-system -y
|
|
|
|
cat << EOF | sudo tee /etc/libvirt/qemu.conf
|
|
user = "root"
|
|
group = "root"
|
|
EOF
|
|
|
|
sudo service libvirt-bin restart
|