Rc.local

From ChekMate Security Group

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

# This will overwrite /etc/issue at every boot.  So, make any changes you
# want to make to /etc/issue here or you will lose them when you reboot.

#
# PLEASE NOTE:  This banner needs to correspond with your company's policies.
#

/bin/cat >/etc/issue <<ISSUE
***************************************************************************
     Authorized uses only.  All activity may be monitored and reported.
                            NOTICE TO USERS

This computer system is the private property of YOUR COMPANY.  It is
for authorized use only. Users (authorized or unauthorized) have no
explicit or implicit expectation of privacy.

Any or all uses of this system and all files on this system may be
intercepted, monitored, recorded, copied, audited, inspected, and
disclosed in accordance with COMPANY policy. 

By using this system, the user consents to such interception, monitoring,
recording, copying, auditing, inspection, disclosure at the
discretion of YOUR COMPANY and agrees to comply with YOUR COMPANY's policies, procedures
and guidelines. Unauthorized or improper use of this system may result in
civil and criminal penalties and administrative or disciplinary action, as
appropriate.

By continuing to use this system you indicate your awareness of and consent
to these terms and conditions of use. LOG OFF IMMEDIATELY if you do not agree
to the conditions stated in this notice.
**************************************************************************** 
ISSUE 

# This will overwrite /etc/motd at every boot.  So, make any changes you
# want to make to /etc/motd here or you will lose them when you reboot.

/bin/cp -f /etc/issue /etc/motd
/bin/cp -f /etc/issue /etc/issue.net

touch /var/lock/subsys/local