Browse code

Print kernel version

Adding `uname -a` to stack.sh to make easy to see from the devstack logs
what was the actually running kernel version.

Change-Id: I0068504bf055a588b155b0a60215440d365bf53e

Attila Fazekas authored on 2015/03/26 17:25:02
Showing 1 changed files
... ...
@@ -89,6 +89,9 @@ if [[ $EUID -eq 0 ]]; then
89 89
     exit 1
90 90
 fi
91 91
 
92
+# Print the kernel version
93
+uname -a
94
+
92 95
 # Prepare the environment
93 96
 # -----------------------
94 97