forked from litespeedtech/openlitespeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modverinfo.sh
executable file
·40 lines (29 loc) · 1.16 KB
/
modverinfo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /bin/sh
#
# This script is to gather pre-defined modules version info
#
#
OS=`uname -s`
ALL_VER_INFO=
DEFINED_VALUE=
get_file_defined_value()
{
DEFINED_VALUE=`grep "$2" "$1" | awk '{print substr($3,1,40)}' | tr -d '"' `
}
MODULESPACE=
if [ "x$OS" = "xLinux" ] ; then
MODULESPACE="\n"
fi
get_file_defined_value src/modules/modgzip/modgzip.cpp "#define MODULE_VERSION"
ALL_VER_INFO="$ALL_VER_INFO\tmodgzip $DEFINED_VALUE$MODULESPACE"
if [ "${OS}" != "Darwin" ] ; then
get_file_defined_value src/modules/cache/cache.cpp "#define MODULE_VERSION_INFO"
ALL_VER_INFO="$ALL_VER_INFO\tcache $DEFINED_VALUE$MODULESPACE"
get_file_defined_value src/modules/modinspector/modinspector.cpp "#define MODULE_VERSION_INFO"
ALL_VER_INFO="$ALL_VER_INFO\tmodinspector $DEFINED_VALUE$MODULESPACE"
get_file_defined_value src/modules/uploadprogress/uploadprogress.cpp "#define MODULE_VERSION_INFO"
ALL_VER_INFO="$ALL_VER_INFO\tuploadprogress $DEFINED_VALUE$MODULESPACE"
get_file_defined_value src/modules/modsecurity-ls/mod_security.cpp "#define VERSIONNUMBER"
ALL_VER_INFO="$ALL_VER_INFO\tmod_security $DEFINED_VALUE$MODULESPACE"
fi
echo $ALL_VER_INFO