aboutsummaryrefslogtreecommitdiffstats
path: root/bin/check-vanilla
blob: 6b4bdd4629739a13e4d651f5ee5519907aa15858 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/env bash
#Check if the kernel name has -rt in it (we're running Realtime Kernel)

if [[ $(uname -r) == *-rt* ]];then
 echo "Failure: Running $(uname -r)."
 exit 1
else
 echo "Success: Running $(uname -r)."
 exit 0
fi