Created
February 21, 2013 13:52
-
-
Save Stubbs/5004858 to your computer and use it in GitHub Desktop.
Can you use wild cards in Puppet exec?
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
exec {"load-crm-fixtures": | |
command => "mysql -u db_user -ppassword db_name < *.sql", | |
cwd => "${rootDir}/sites/${siteDirectory}/db/crm/fixtures/", | |
path => ['/usr/bin'], | |
require => Exec['clean-crm-db'], | |
logoutput => true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment