Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ For detailed info about the logic and usage patterns of Example42 modules read R
root_password => 'auto',
}

* Create a new grant and database

mysql::grant { "db1":
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These documentation samples are VERY welcomed.
They would be perfect if the sample code is puppet-lint compliant...

for example:

            mysql_privileges => "ALL",

should be:

    mysql_privileges => 'ALL',

(use " only where you need to interpolate variables, use 2 spaces as tab ....)

mysql_privileges => "ALL",
mysql_password => "pwd",
mysql_db => "db1",
mysql_user => "db1",
mysql_host => "host"
}


== USAGE - Basic management
Expand Down