Ubuntu 14.10(utopic) reached end of life[1].
[1]: https://lists.ubuntu.com/archives/ubuntu-announce/2015-July/000197.html
Change-Id: Iab13ca797bda56462d9d117aa500d3ba0d9bebcb
| ... | ... |
@@ -23,7 +23,7 @@ DEBUG_LIBVIRT=$(trueorfalse True DEBUG_LIBVIRT) |
| 23 | 23 |
# Installs required distro-specific libvirt packages. |
| 24 | 24 |
function install_libvirt {
|
| 25 | 25 |
if is_ubuntu; then |
| 26 |
- if is_arch "aarch64" && [[ ${DISTRO} =~ (trusty|utopic) ]]; then
|
|
| 26 |
+ if is_arch "aarch64" && [[ ${DISTRO} == "trusty" ]]; then
|
|
| 27 | 27 |
install_package qemu-system |
| 28 | 28 |
else |
| 29 | 29 |
install_package qemu-kvm |
| ... | ... |
@@ -178,7 +178,7 @@ source $TOP_DIR/stackrc |
| 178 | 178 |
|
| 179 | 179 |
# Warn users who aren't on an explicitly supported distro, but allow them to |
| 180 | 180 |
# override check and attempt installation with ``FORCE=yes ./stack`` |
| 181 |
-if [[ ! ${DISTRO} =~ (precise|trusty|utopic|vivid|7.0|wheezy|sid|testing|jessie|f21|f22|rhel7) ]]; then
|
|
| 181 |
+if [[ ! ${DISTRO} =~ (precise|trusty|vivid|7.0|wheezy|sid|testing|jessie|f21|f22|rhel7) ]]; then
|
|
| 182 | 182 |
echo "WARNING: this script has not been tested on $DISTRO" |
| 183 | 183 |
if [[ "$FORCE" != "yes" ]]; then |
| 184 | 184 |
die $LINENO "If you wish to run this script anyway run with FORCE=yes" |