Last active
October 5, 2015 15:09
-
-
Save thattommyhall/3facc6f6d9ae5e194dec to your computer and use it in GitHub Desktop.
WTF Puppet
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
file { '/etc/sphinxsearch/sphinx.conf': | |
ensure => link, | |
target => "${cm_path}/sphinx/sphinx.conf", | |
notify => Service['sphinxsearch'], | |
require => Package['sphinxsearch'], | |
} | |
$cm_path = "/cgi-perl/cm" |
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
$cm_path = "/cgi-perl/cm" | |
file { '/etc/sphinxsearch/sphinx.conf': | |
ensure => link, | |
target => "${cm_path}/sphinx/sphinx.conf", | |
notify => Service['sphinxsearch'], | |
require => Package['sphinxsearch'], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment