From d9de1199bd3f79fc7b71e933970c6f14afa8d310 Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Thu, 26 Mar 2015 09:25:02 +0100 Subject: [PATCH] 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 --- stack.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stack.sh b/stack.sh index 9069367fa0..79f8fa3a7f 100755 --- a/stack.sh +++ b/stack.sh @@ -89,6 +89,9 @@ if [[ $EUID -eq 0 ]]; then exit 1 fi +# Print the kernel version +uname -a + # Prepare the environment # -----------------------