summaryrefslogtreecommitdiff
path: root/tests/100_create_user_grant.pp
blob: 1d3dca80a983296b81c2e0a095686eb7e57c2f29 (plain)
1
2
3
4
5
6
7
8
9
err("Grant SELECT, INSERT and UPDATE to test_user@%")

mysql_grant {
	"test_user@%":
		privileges => [ "select_priv", 'insert_priv', 'update_priv' ],
		tag => test;
}