summaryrefslogtreecommitdiff
path: root/tests/010_create_user.pp
blob: a45ed5b776db360c3c8fce8c1e0844c17378125b (plain)
1
2
3
4
5
6
7
err("Will create user 'test_user@%' with password 'blah'")

mysql_user{ "test_user@%":
	password_hash => mysql_password("blah"),
	ensure => present
}