Created
September 23, 2016 17:20
-
-
Save discreet/ce3cd8918175d6ec516c34f98a37d151 to your computer and use it in GitHub Desktop.
Logic for server type config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class foo { | |
case $::tier { | |
'websphere': { include '::foo::websphere' } | |
'dbora': { include '::foo::dbora' } | |
'monbot': { include '::foo::monbot' } | |
'tomcat': { include '::foo::tomcat' } | |
default: { fail("blah blah blah") } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment