Sha256: f39415f0801c9904c227be42cfe696714fc495a5e6057ac8936491b3d0f1e727

Contents?: true

Size: 792 Bytes

Versions: 353

Compression:

Stored size: 792 Bytes

Contents

require 'spec_helper'

property[:os] = nil
set :os, :family => 'redhat', :release => '7'

describe get_command(:enable_service, 'httpd') do
  it { should eq 'systemctl enable httpd' }
end

describe get_command(:disable_service, 'httpd') do
  it { should eq 'systemctl disable httpd' }
end

describe get_command(:start_service, 'httpd') do
  it { should eq 'systemctl start httpd' }
end

describe get_command(:stop_service, 'httpd') do
  it { should eq 'systemctl stop httpd' }
end

describe get_command(:restart_service, 'httpd') do
  it { should eq 'systemctl restart httpd' }
end

describe get_command(:reload_service, 'httpd') do
  it { should eq 'systemctl reload httpd' }
end

describe get_command(:enable_service, 'sshd.socket') do
  it { should eq 'systemctl enable sshd.socket' }
end

Version data entries

353 entries across 353 versions & 3 rubygems

Version Path
specinfra-2.0.3 spec/command/redhat7/service_spec.rb
specinfra-2.0.2 spec/command/redhat7/service_spec.rb
specinfra-2.0.1 spec/command/redhat7/service_spec.rb
specinfra-2.0.0 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta52 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta51 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta50 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta49 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta48 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta47 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta46 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta45 spec/command/redhat7/service_spec.rb
specinfra-2.0.0.beta44 spec/command/redhat7/service_spec.rb