2014-08-26 17:33:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Lynis
|
|
|
|
# ------------------
|
|
|
|
#
|
|
|
|
# Copyright 2007-2014, Michael Boelen (michael@rootkit.nl), The Netherlands
|
|
|
|
# Web site: http://www.rootkit.nl
|
|
|
|
#
|
|
|
|
# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
|
|
|
|
# welcome to redistribute it under the terms of the GNU General Public License.
|
|
|
|
# See LICENSE file for usage of this software.
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
AUTOMATION_TOOL_FOUND=0
|
2014-09-18 11:04:22 +02:00
|
|
|
AUTOMATION_TOOL_RUNNING=""
|
2014-08-26 17:33:55 +02:00
|
|
|
BACKUP_AGENT_FOUND=0
|
2014-09-18 11:04:22 +02:00
|
|
|
PUPPET_MASTER_RUNNING=0
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
InsertSection "Software: System tooling"
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Automation
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : TOOL-5002
|
|
|
|
# Description : Check if automation tools are found
|
|
|
|
Register --test-no TOOL-5002 --weight L --network NO --description "Checking for automation tools"
|
|
|
|
if [ ${SKIPTEST} -eq 0 ]; then
|
|
|
|
|
2014-09-15 12:01:09 +02:00
|
|
|
Display --indent 2 --text "- Checking automation tooling"
|
2014-08-26 17:33:55 +02:00
|
|
|
|
|
|
|
# Cfengine
|
|
|
|
if [ ! "${CFAGENTBINARY}" = "" ]; then
|
|
|
|
logtext "Result: Cfengine (cfagent) is installed (${CFAGENTBINARY})"
|
|
|
|
AUTOMATION_TOOL_FOUND=1
|
|
|
|
Display --indent 4 --text "Found: Cfengine (cfagent)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Puppet
|
|
|
|
if [ ! "${PUPPETBINARY}" = "" ]; then
|
|
|
|
logtext "Result: Puppet is installed (${PUPPETBINARY})"
|
|
|
|
AUTOMATION_TOOL_FOUND=1
|
|
|
|
Display --indent 4 --text "Found: Puppet (agent)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
IsRunning "puppet master"
|
|
|
|
if [ ${RUNNING} -eq 1 ]; then
|
|
|
|
logtext "Result: found puppet master"
|
|
|
|
PUPPET_MASTER_RUNNING=1
|
2014-09-18 11:04:22 +02:00
|
|
|
report "automation_tool_running[]=puppet"
|
2014-08-26 17:33:55 +02:00
|
|
|
Display --indent 4 --text "Found: Puppet (master)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
|
2014-09-18 11:04:22 +02:00
|
|
|
# SaltStack
|
|
|
|
if [ ! "${SALTMINIONBINARY}" = "" ]; then
|
|
|
|
logtext "Result: SaltStack (salt-minion) is installed (${SALTMINIONBINARY})"
|
|
|
|
AUTOMATION_TOOL_FOUND=1
|
|
|
|
Display --indent 4 --text "Found: SaltStack minion (salt-minion)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
if [ ! "${SALTMASTERBINARY}" = "" ]; then
|
|
|
|
logtext "Result: SaltStack (salt-master) is installed (${SALTMASTERBINARY})"
|
|
|
|
AUTOMATION_TOOL_FOUND=1
|
|
|
|
Display --indent 4 --text "Found: SaltStack master (salt-master)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
IsRunning "salt-master"
|
|
|
|
if [ ${RUNNING} -eq 1 ]; then
|
|
|
|
logtext "Result: found SaltStack (master)"
|
|
|
|
SALT_MASTER_RUNNING=1
|
|
|
|
report "automation_tool_running[]=saltstack-master"
|
|
|
|
Display --indent 4 --text "Found: SaltStack (master)" --result FOUND --color GREEN
|
|
|
|
fi
|
|
|
|
|
2014-08-26 17:33:55 +02:00
|
|
|
if [ ${AUTOMATION_TOOL_FOUND} -eq 1 ]; then
|
|
|
|
Display --indent 2 --text "- Automation tooling" --result FOUND --color GREEN
|
|
|
|
else
|
|
|
|
Display --indent 2 --text "- Automation tooling" --result "NOT FOUND" --color YELLOW
|
|
|
|
ReportSuggestion ${TEST_NO} "Determine if automation tools are present for system management"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Backup tools
|
|
|
|
#
|
|
|
|
#################################################################################
|
2014-09-18 11:04:22 +02:00
|
|
|
#
|
|
|
|
# Netvault
|
|
|
|
# Rsync in cron
|
|
|
|
#
|
|
|
|
#################################################################################
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
wait_for_keypress
|
|
|
|
#
|
|
|
|
#================================================================================
|
|
|
|
# Lynis - Copyright 2007-2014, Michael Boelen - www.rootkit.nl - The Netherlands
|