Created
April 26, 2019 10:55
-
-
Save b4ldr/d6958b7a58a471623d35fbc1a3c6384b to your computer and use it in GitHub Desktop.
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 profile::standard ( | |
Boolean $has_default_mail_relay = lookup('profile::standard::has_default_mail_relay', {'default_value' => true}), | |
Boolean $has_admin = lookup('profile::standard::has_admin', {'default_value' => true}), | |
) { | |
class {'standard': | |
has_default_mail_relay => $has_default_mail_relay | |
has_admin => $has_admin | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment