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/functions')
-rw-r--r--include/functions20
1 files changed, 11 insertions, 9 deletions
diff --git a/include/functions b/include/functions
index 5b211707..db4c7ef8 100644
--- a/include/functions
+++ b/include/functions
@@ -2562,15 +2562,17 @@
GetTimestamp() {
ts=0
- case "${OS}" in
- "Linux")
- ts=$(date "+%s%N")
- ;;
- *)
- ts=$(date "+%s")
- ;;
- esac
- echo $ts
+ # Detect if the implementation of date supports nanoseconds,
+ if [ "${OS}" = "Linux" ]; then
+ current_nanoseconds=$(date "+%N")
+ # Verify if the result of the command is a number
+ if [ -n "$current_nanoseconds" ] && [ "$current_nanoseconds" -eq "$current_nanoseconds" ] 2>/dev/null; then
+ ts=$(date "+%s%N")
+ else
+ ts=$(date "+%s")
+ fi
+ fi
+ echo $ts
}
Register() {