We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5086e71 commit 3ee09ecCopy full SHA for 3ee09ec
1 file changed
tools/build_kvm.sh
@@ -1,9 +1,12 @@
1
#!/usr/bin/env bash
2
3
+# Make sure that we have the proper version of ubuntu
4
UBUNTU_VERSION=`cat /etc/lsb-release | grep CODENAME | sed 's/.*=//g'`
5
if [ ! "oneiric" = "$UBUNTU_VERSION" ]; then
- echo "This script only works with oneiric"
6
- exit 1
+ if [ ! "natty" = "$UBUNTU_VERSION" ]; then
7
+ echo "This script only works with oneiric and natty"
8
+ exit 1
9
+ fi
10
fi
11
12
# Echo commands
0 commit comments