2020-11-27 09:22:47 +01:00
|
|
|
# shellcheck shell=bash
|
2019-02-06 15:19:14 +01:00
|
|
|
# Defines constants for CIS Debian Hardening
|
2016-04-01 09:32:17 +02:00
|
|
|
|
2020-11-23 17:10:37 +01:00
|
|
|
# run-shellcheck
|
2016-04-04 15:05:10 +02:00
|
|
|
# Script and shell commands homogeneity
|
|
|
|
export LANG=C
|
2016-04-01 09:32:17 +02:00
|
|
|
|
2016-04-04 15:05:10 +02:00
|
|
|
#### Useful Color constants settings for loglevels
|
2016-04-01 09:32:17 +02:00
|
|
|
|
|
|
|
# Reset Color (for syslog)
|
|
|
|
NC='\033[0m'
|
2016-04-01 16:48:31 +02:00
|
|
|
WHITE='\033[0m'
|
2016-04-01 09:32:17 +02:00
|
|
|
# Colors
|
2016-04-01 16:48:31 +02:00
|
|
|
RED='\033[0;31m'
|
|
|
|
GREEN='\033[0;32m'
|
|
|
|
YELLOW='\033[0;33m'
|
2020-12-04 14:08:01 +01:00
|
|
|
GRAY='\033[0;40m' # Gray
|
2016-04-01 09:32:17 +02:00
|
|
|
|
|
|
|
# Bold
|
2020-12-04 14:08:01 +01:00
|
|
|
BRED='\033[1;31m' # Red
|
|
|
|
BGREEN='\033[1;32m' # Green
|
|
|
|
BYELLOW='\033[1;33m' # Yellow
|
|
|
|
BWHITE='\033[1;37m' # White
|