37 lines
755 B
Plaintext
Executable File
37 lines
755 B
Plaintext
Executable File
function build_manager_password_report
|
|
{
|
|
# Build a file to print for the secure envelope
|
|
(
|
|
$ECHO "\n RESTRICTED USE!!!"
|
|
$ECHO "\n\n\tImmediately send an e-mail to:\n"
|
|
|
|
$ECHO " $NOTIFICATION_LIST"
|
|
|
|
$ECHO "\n\tif this password is revealed!"
|
|
$ECHO "\n\tAIX root password: $PW\n"
|
|
|
|
$ECHO "\n\n"
|
|
|
|
$ECHO "\n RESTRICTED USE!!!"
|
|
$ECHO "\n\n\tImmediately send an e-mail to:\n"
|
|
|
|
$ECHO " $NOTIFICATION_LIST"
|
|
|
|
$ECHO "\n\tif this password is revealed!"
|
|
$ECHO "\n\tAIX root password: $PW\n"
|
|
|
|
$ECHO "\n\n"
|
|
|
|
$ECHO "\n RESTRICTED USE!!!"
|
|
$ECHO "\n\n\tImmediately send an e-mail to:\n"
|
|
|
|
$ECHO " $NOTIFICATION_LIST"
|
|
|
|
$ECHO "\n\tif this password is revealed!"
|
|
$ECHO "\n\tAIX root password: $PW\n"
|
|
|
|
) > $OUTFILE
|
|
|
|
}
|
|
|