- Puppet 5 Cookbook
- Thomas Uphill
- 47字
- 2021-06-18 19:13:09
elsif branches
You can add further tests using the elsif keyword, as follows:
if $::timezone == 'UTC' {
notify { 'Universal Time Coordinated': }
} elsif $::timezone == 'GMT' {
notify { 'Greenwich Mean Time': }
} else {
notify { "$::timezone is not UTC": }
}