Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
manegron committed Nov 28, 2023
1 parent 70d2124 commit 98a667f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions spec/configuration/network_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'spec_helper'
set :os, family: 'redhat', release: '9', arch: 'x86_64'

Expand Down
2 changes: 2 additions & 0 deletions spec/modules/monitor/cluster_monitor_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'spec_helper'

describe 'Redborder Monitor Services' do
Expand Down
6 changes: 4 additions & 2 deletions spec/services/snmpd_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'spec_helper'
set :os, :family => 'redhat', :release => '9', :arch => 'x86_64'
set :os, family: 'redhat', release: '9', arch: 'x86_64'

describe 'Checking net-snmp' do
describe package('net-snmp') do
Expand All @@ -14,4 +16,4 @@
describe port(199) do
it { should be_listening }
end
end
end
2 changes: 2 additions & 0 deletions spec/services/ssh_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'spec_helper'

describe port(22) do
Expand Down
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'serverspec'
require 'net/ssh'
require 'tempfile'
Expand Down

0 comments on commit 98a667f

Please sign in to comment.