Skip to content

Commit

Permalink
use mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
h-haaks committed Feb 9, 2024
1 parent 1b218a9 commit 21ec8fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions spec/acceptance/mysql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@
describe 'jira mysql' do
it 'installs with defaults' do
pp = <<-EOS
# On ubuntu 20.04 and 22.04 the default is to install mariadb
# As the ubuntu 20.04 runner we use in github actions allready has mysql installed
# a apparmor error is triggerd when using mariadb in this test..
# Forcing the use of mysql

Check failure on line 11 in spec/acceptance/mysql_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Layout/TrailingWhitespace: Trailing whitespace detected. (https://rubystyle.guide#no-trailing-whitespace)
class { 'mysql::server':
root_password => 'strongpassword',
package_name => 'mysql-server',
service_name => 'mysql',
}
# Default MySQL is too old for utf8mb4 on CentOS 7, or something. Also Ubuntu 20.04
Expand Down

0 comments on commit 21ec8fc

Please sign in to comment.