Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/init/ossec-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ DIR=`dirname $PWD`;
### Do not modify below here ###
NAME="OSSEC HIDS"
VERSION="v3.1.0"
AUTHOR="Trend Micro Inc."
DAEMONS="ossec-logcollector ossec-syscheckd ossec-agentd ossec-execd"

[ -f /etc/ossec-init.conf ] && . /etc/ossec-init.conf
Expand Down Expand Up @@ -120,7 +119,7 @@ start()
{
SDAEMONS="ossec-execd ossec-agentd ossec-logcollector ossec-syscheckd"

echo "Starting $NAME $VERSION (by $AUTHOR)..."
echo "Starting $NAME $VERSION..."
lock;
checkpid;

Expand Down
3 changes: 1 addition & 2 deletions src/init/ossec-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ fi

NAME="OSSEC HIDS"
VERSION="v3.1.0"
AUTHOR="Trend Micro Inc."
DAEMONS="ossec-monitord ossec-logcollector ossec-syscheckd ossec-analysisd ossec-maild ossec-execd ${DB_DAEMON} ${CSYSLOG_DAEMON} ${AGENTLESS_DAEMON}"

## Locking for the start/stop
Expand Down Expand Up @@ -180,7 +179,7 @@ start()
{
SDAEMONS="${DB_DAEMON} ${CSYSLOG_DAEMON} ${AGENTLESS_DAEMON} ossec-maild ossec-execd ossec-analysisd ossec-logcollector ossec-syscheckd ossec-monitord"

echo "Starting $NAME $VERSION (by $AUTHOR)..."
echo "Starting $NAME $VERSION..."
echo | ${DIR}/bin/ossec-logtest > /dev/null 2>&1;
if [ ! $? = 0 ]; then
echo "ossec-analysisd: Configuration error. Exiting."
Expand Down
3 changes: 1 addition & 2 deletions src/init/ossec-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ fi

NAME="OSSEC HIDS"
VERSION="v3.1.0"
AUTHOR="Trend Micro Inc."

[ -f /etc/ossec-init.conf ] && . /etc/ossec-init.conf;

Expand Down Expand Up @@ -194,7 +193,7 @@ start()
{
SDAEMONS="${DB_DAEMON} ${CSYSLOG_DAEMON} ${AGENTLESS_DAEMON} ossec-maild ossec-execd ossec-analysisd ossec-logcollector ossec-remoted ossec-syscheckd ossec-monitord"

echo "Starting $NAME $VERSION (by $AUTHOR)..."
echo "Starting $NAME $VERSION..."
echo | ${DIR}/bin/ossec-logtest > /dev/null 2>&1;
if [ ! $? = 0 ]; then
echo "OSSEC analysisd: Testing rules failed. Configuration error. Exiting."
Expand Down