forked from redhat-openstack/openstack-puppet-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(MODULES-1338) Allow mysql::db to import several files
A user might need to import several files on database creation. Currently the module only allows the import of a single file. This commit allows one to, from now on, import severals. Before : mysql::db { 'test' : sql => '/tmp/my_import1.sql', } Now : mysql::db { 'test' : sql => [ '/tmp/my_import1.sql', '/tmp/my_import2.sql', ] }
- Loading branch information
Showing
2 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
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
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