mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-21 21:17:00 +01:00
8 lines
201 B
Bash
8 lines
201 B
Bash
# CIS Debian 7 Hardening common functions
|
|
|
|
logger() {
|
|
test -z "$SCRIPT_NAME" && SCRIPT_NAME=$(basename $0)
|
|
/usr/bin/logger -i -t "$SCRIPT_NAME" -p "user.info" "$*"
|
|
test -t 1 && echo "$*"
|
|
}
|