We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db24454 + 4cdf30f commit c8ec032Copy full SHA for c8ec032
Gemfile
@@ -1,5 +1,7 @@
1
+# encoding: utf-8
2
+
3
source 'https://rubygems.org'
4
5
gem 'rake'
6
gem 'serverspec'
-gem 'rubocop', '~> 0.23'
7
+gem 'rubocop', '~> 0.23'
default/serverspec/mysql_spec.rb
@@ -213,8 +213,8 @@
213
end
214
215
describe file(mysql_config_file) do
216
- it { should be_owned_by 'mysql' }
217
- it { should be_grouped_into 'mysql' }
+ it { should be_owned_by 'root' }
+ it { should be_grouped_into 'root' }
218
it { should_not be_readable.by('others') }
219
220
0 commit comments