Adding control structures in manifests
You have written three simple manifests while following the instructions in this chapter so far. Each comprised only one resource, and one of them was given on the command line using the -e
option. Of course, you would not want to write distinct manifests for each possible circumstance. Instead, just as how Ruby or Perl scripts branch out into different code paths, there are structures that make your Puppet code flexible and reusable for different circumstances.
The most common control element is the if
/else
block. It is quite similar to its equivalents in many programming languages:
if 'mail_lda' in $needed_services { service { 'dovecot': enable => true } } else { service { 'dovecot': enable => false } }
The Puppet DSL also has a case
statement, which is reminiscent of its counterparts in other languages as well:
case $role { 'imap_server': { package { 'dovecot': ensure => 'installed' } service { 'dovecot': ensure => 'running' } } /_webserver$/: { service { [ 'apache', 'ssh' ]: ensure => 'running' } } default: { service { 'ssh': ensure => running } } }
A variation of the case
statement is the selector. It's an expression, not a statement, and can be used in a fashion similar to the ternary if
/else
operator found in C-like languages:
package { 'dovecot': ensure => $role ? { 'imap_server' => 'installed', /desktop$/ => 'purged', default => 'removed', }, }
It should be used with caution, because in more complex manifests, this syntax will impede readability.
- Monkey Game Development:Beginner's Guide
- 兩周自制腳本語言
- 實(shí)戰(zhàn)Java程序設(shè)計(jì)
- SEO智慧
- Java 9模塊化開發(fā):核心原則與實(shí)踐
- Spring+Spring MVC+MyBatis整合開發(fā)實(shí)戰(zhàn)
- GitHub入門與實(shí)踐
- Java 9 Programming By Example
- Advanced Python Programming
- Modernizing Legacy Applications in PHP
- VMware vSphere Design Essentials
- Manage Your SAP Projects with SAP Activate
- JSP應(yīng)用與開發(fā)技術(shù)(第3版)
- Three.js Essentials
- Switching to Angular 2