Skip to content

Commit ded2737

Browse files
authored
Merge branch 'master' into release
2 parents 426bbc6 + 5463378 commit ded2737

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,5 +843,5 @@ configuration variables.
843843
## 2011-06-03 - Dan Bode <dan@puppetlabs.com> - 0.0.1
844844
* initial commit
845845

846-
846+
[5.1.0]:https://github.com/puppetlabs/puppetlabs-mysql/compare/5.0.0...5.1.0
847847
[5.0.0]:https://github.com/puppetlabs/puppetlabs-mysql/compare/4.0.1...5.0.0

lib/puppet/provider/mysql_grant/mysql.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def revoke(user, table, revoke_privileges = ['ALL'])
114114

115115
def destroy
116116
# if the user was dropped, it'll have been removed from the user hash
117-
# as the grants are alraedy removed by the DROP statement
117+
# as the grants are already removed by the DROP statement
118118
if self.class.users.include? @property_hash[:user]
119119
if @property_hash[:privileges].include?('PROXY')
120120
revoke(@property_hash[:user], @property_hash[:table], @property_hash[:privileges])

metadata.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@
5656
"operatingsystem": "Debian",
5757
"operatingsystemrelease": [
5858
"7",
59-
"8",
60-
"9"
59+
"8"
6160
]
6261
},
6362
{

spec/spec_helper_acceptance.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run_task(task_name:, params: nil, password: DEFAULT_PASSWORD)
4343
end
4444

4545
def run_bolt_task(task_name:, params: nil, password: DEFAULT_PASSWORD)
46-
on(master, "/opt/puppetlabs/puppet/bin/bolt task run #{task_name} --modules /etc/puppetlabs/code/modules/service --nodes localhost --password #{password} #{params}", acceptable_exit_codes: [0, 1]).stdout # rubocop:disable Metrics/LineLength
46+
on(master, "/opt/puppetlabs/puppet/bin/bolt task run #{task_name} --modulepath /etc/puppetlabs/code/modules/service --nodes localhost --password #{password} #{params}", acceptable_exit_codes: [0, 1]).stdout # rubocop:disable Metrics/LineLength
4747
end
4848

4949
def run_puppet_task(task_name:, params: nil)

0 commit comments

Comments
 (0)