mirror of
https://github.com/ovh/debian-cis.git
synced 2025-02-16 23:45:41 +01:00
22 lines
307 B
Bash
22 lines
307 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# CIS Debian 7 Hardening
|
|
#
|
|
|
|
#
|
|
# 1.1 Install Updates, Patches and Additional Security Software (Not Scored)
|
|
#
|
|
|
|
# This function will be called if the script status is ont enabled / audit mode
|
|
audit () {
|
|
|
|
}
|
|
|
|
# This function will be called if the script status is on enabled mode
|
|
apply () {
|
|
|
|
}
|
|
|
|
|