mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 05:27:01 +01:00
34 lines
334 B
Bash
34 lines
334 B
Bash
|
# Defines constants for CIS Debian 7 Hardening
|
||
|
|
||
|
#
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#### Useful Colot constants settings for loglevels
|
||
|
|
||
|
# Reset Color (for syslog)
|
||
|
NC='\033[0m'
|
||
|
|
||
|
# Colors
|
||
|
RED='\033[1;31m'
|
||
|
GREEN='\033[1;32m'
|
||
|
YELLOW='\033[1;33m'
|
||
|
|
||
|
# Bold
|
||
|
BRED='\033[1;31m' # Red
|
||
|
BGREEN='\033[1;32m' # Green
|
||
|
BYELLOW='\033[1;33m' # Yellow
|