File tree 2 files changed +4
-8
lines changed 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -369,12 +369,12 @@ class { 'mysql::server':
369
369
user => "web@${dbSubnet}",
370
370
require => Mysql_user["web@${dbSubnet}"],
371
371
}
372
- mysql_user { "web@${::networking['ip'] }":
372
+ mysql_user { "web@${fqdn }":
373
373
ensure => present,
374
374
}
375
- mysql_grant { "web@${::networking['ip'] }/*.*":
376
- user => "web@${::networking['ip'] }",
377
- require => Mysql_user["web@${::networking['ip'] }"],
375
+ mysql_grant { "web@${fqdn }/*.*":
376
+ user => "web@${fqdn }",
377
+ require => Mysql_user["web@${fqdn }"],
378
378
}
379
379
mysql_user { 'web@localhost':
380
380
ensure => present,
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- RSpec . configure do |c |
4
- c . mock_with :rspec
5
- end
6
-
7
3
require 'puppetlabs_spec_helper/module_spec_helper'
8
4
require 'rspec-puppet-facts'
9
5
You can’t perform that action at this time.
0 commit comments