mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +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 () {
|
||
|
|
||
|
}
|
||
|
|
||
|
|