#!/bin/sh
#
# /etc/rc.d/rc.local: Local system initialization script.
#
# Put any local startup commands in here. Also, if you have
# anything that needs to be run at shutdown time you can
# make an /etc/rc.d/rc.local_shutdown script and put those
# commands in there.
if [ -x /etc/rc.d/rc.tm351vm ]
then
/etc/rc.d/rc.tm351vm start
fi
# Start fail2ban
if [ -x /etc/rc.d/rc.fail2ban ]; then
echo "Starting fail2ban: /etc/rc.d/rc.fail2ban"
/etc/rc.d/rc.fail2ban start
fi
# Log boot time...
/bin/date >> /var/log/boot.log
No comments:
Post a Comment
Note: only a member of this blog may post a comment.