-
-
Save jfryman/1501885 to your computer and use it in GitHub Desktop.
This file contains 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 dnsmasq { | |
include dnsmasq::install | |
include dnsmasq::config | |
include dnsmasq::service | |
Class['dnsmasq::install'] -> Class['dnsmasq::config'] ~> Class['dnsmasq::service'] | |
} |
This file contains 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 dnsmasq { | |
class { 'dnsmasq::install': } | |
-> class { 'dnsmasq::config': } | |
-> class { 'dnsmasq::service': } | |
} |
This file contains 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 dnsmasq { | |
class { 'dnsmasq::install': } | |
class { 'dnsmasq::config': | |
require => Class['dnsmasq::install'], | |
notify => Class['dnsmasq::service'], | |
} | |
class { 'dnsmasq::service': } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment