Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2017-07-01 11:29:05 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2017-07-01 11:29:05 +0300
commitf33cdd3a17aec6870a03840b532e9b1d6fd77144 (patch)
tree969725c771256910a86bfbcf607e16026406e467
parent491311f3bf5f5e2f154b8674679bb8a362b1cd13 (diff)
OS detection: macOS 10.13, High Sierra (#409)
-rw-r--r--include/osdetection1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osdetection b/include/osdetection
index dc53f51f..0ea1d8bb 100644
--- a/include/osdetection
+++ b/include/osdetection
@@ -52,6 +52,7 @@
10.10 | 10.10.[0-9]*) OS_FULLNAME="Mac OS X 10.10 (Yosemite)" ;;
10.11 | 10.11.[0-9]*) OS_FULLNAME="Mac OS X 10.11 (El Capitan)" ;;
10.12 | 10.12.[0-9]*) OS_FULLNAME="macOS Sierra (${OS_VERSION})" ;;
+ 10.13 | 10.13.[0-9]*) OS_FULLNAME="macOS High Sierra (${OS_VERSION})" ;;
*) echo "Unknown macOS version. Do you know what version it is? Create an issue at ${PROGRAM_SOURCE}" ;;
esac
else