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:
Diffstat (limited to 'include/osdetection')
-rw-r--r--include/osdetection16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/osdetection b/include/osdetection
index 1dcb917f..aad5cf18 100644
--- a/include/osdetection
+++ b/include/osdetection
@@ -302,21 +302,21 @@
# PCLinuxOS
if [ -f /etc/pclinuxos-release ]; then
- FIND=$(grep "^PCLinuxOS" /etc/pclinuxos-release)
+ FIND=$(grep "^PCLinuxOS" /etc/pclinuxos-release)
if [ ! "${FIND}" = "" ]; then
- OS_FULLNAME="PCLinuxOS Linux"
- LINUX_VERSION="PCLinuxOS"
- OS_VERSION=$(grep "^PCLinuxOS" /etc/pclinuxos-release | awk '{ if ($2=="release") { print $3 } }')
+ OS_FULLNAME="PCLinuxOS Linux"
+ LINUX_VERSION="PCLinuxOS"
+ OS_VERSION=$(grep "^PCLinuxOS" /etc/pclinuxos-release | awk '{ if ($2=="release") { print $3 } }')
fi
fi
# Sabayon Linux
if [ -f /etc/sabayon-edition ]; then
- FIND=$(grep "Sabayon Linux" /etc/sabayon-edition)
+ FIND=$(grep "Sabayon Linux" /etc/sabayon-edition)
if [ ! "${FIND}" = "" ]; then
- OS_FULLNAME="Sabayon Linux"
- LINUX_VERSION="Sabayon"
- OS_VERSION=$(awk '{ print $3 }' /etc/sabayon-edition)
+ OS_FULLNAME="Sabayon Linux"
+ LINUX_VERSION="Sabayon"
+ OS_VERSION=$(awk '{ print $3 }' /etc/sabayon-edition)
fi
fi