Sha256: 0dd2758754c5351f909de3a424d8902d4b610c6ab06789829e38eb7ce3debded
Contents?: true
Size: 648 Bytes
Versions: 361
Compression:
Stored size: 648 Bytes
Contents
require 'spec_helper' property[:os] = nil set :os, :family => 'redhat' describe get_command(:enable_service, 'httpd') do it { should eq 'chkconfig httpd on' } end describe get_command(:disable_service, 'httpd') do it { should eq 'chkconfig httpd off' } end describe get_command(:start_service, 'httpd') do it { should eq 'service httpd start' } end describe get_command(:stop_service, 'httpd') do it { should eq 'service httpd stop' } end describe get_command(:restart_service, 'httpd') do it { should eq 'service httpd restart' } end describe get_command(:reload_service, 'httpd') do it { should eq 'service httpd reload' } end
Version data entries
361 entries across 361 versions & 3 rubygems