Puppet Function: cd4peadm::print_welcome_message
- Defined in:
- functions/print_welcome_message.pp
- Function type:
- Puppet Language
Overview
Prints a welcome message that is intended to be displayed at the beginning of the installation process.
2 3 4 5 6 7 8 9 10 11 12 |
# File 'functions/print_welcome_message.pp', line 2
function cd4peadm::print_welcome_message () {
$out_message = @(EOT)
Puppet Enterprise customers are entitled to use the full Puppet Enterprise Suite:
Puppet Enterprise, Continuous Delivery, and Security Compliance Management.
At the end of this Continuous Delivery installation process, you'll have the option to separately
install Security Compliance Management.
| EOT
out::message($out_message)
}
|