diff options
author | Victor Morales <victor.morales@intel.com> | 2018-04-27 08:25:38 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-04-27 08:25:38 -0700 |
commit | 9659e8fceedd5b8b0b75456c4b30f1d1848baffb (patch) | |
tree | c529a0a719ee35cdd35654fc0941d7b4927ee548 /tools/setup.sh | |
parent | a3bc880a08fe52de607ccd5c72800b8d1104ecfc (diff) |
Change libvirt_group variable type
The libvirt_group variable has been declared as read-only variable
and given that's changed in Ubuntu distros, this needs to be
writetable.
Change-Id: I9526225870aafbc766ddd1aa44dcdb7f477af85a
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-370
Diffstat (limited to 'tools/setup.sh')
-rwxr-xr-x | tools/setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/setup.sh b/tools/setup.sh index a730026..8b0ef42 100755 --- a/tools/setup.sh +++ b/tools/setup.sh @@ -40,7 +40,7 @@ case $provider in esac source /etc/os-release || source /usr/lib/os-release -declare -r libvirt_group="libvirt" +libvirt_group="libvirt" packages=() case ${ID,,} in *suse) |