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:
authormboelen <michael@cisofy.com>2015-01-30 21:59:17 +0300
committermboelen <michael@cisofy.com>2015-01-30 21:59:17 +0300
commit42e3f46a283288a0b2aca5b539a6e733fa8c4137 (patch)
treea2bc65774bdc9f944daac48d8d5564de3d61becb
parent902eafeca9f84505c3d1cb55be715d33593ca0c3 (diff)
Allowing URLs to control information to be adjusted for CUST tests
-rw-r--r--include/profiles20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/profiles b/include/profiles
index 5af27f43..3d52bfa0 100644
--- a/include/profiles
+++ b/include/profiles
@@ -51,6 +51,26 @@
OPTIONS_CONN_MAX_WAIT_STATE="${VALUE}"
;;
+ # Append something to URL for control information
+ control_url_append)
+ CONTROL_URL_APPEND="${VALUE}"
+ ;;
+
+ # Prepend an URL before control information link
+ control_url_prepend)
+ CONTROL_URL_PREPEND="${VALUE}"
+ ;;
+
+ # Append something to URL for control information (only applies to CUST-*)
+ custom_url_append)
+ CUSTOM_URL_APPEND="${VALUE}"
+ ;;
+
+ # Prepend an URL before control information link (only applies to CUST-*)
+ custom_url_prepend)
+ CUSTOM_URL_PREPEND="${VALUE}"
+ ;;
+
# Do not check security repository in sources.list (Debian/Ubuntu)
debian_skip_security_repository)
OPTION_DEBIAN_SKIP_SECURITY_REPOSITORY="${VALUE}"