Sha256: b7706c8c88a43ac045e58f6ce6efcd6ad2926bcfda3cf927423d77378ee3c7fe

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

require 'itamae'

module Itamae
  module Resource
    class Service < Base
      define_attribute :action, default: :nothing
      define_attribute :name, type: String, default_name: true

      def pre_action
        case @current_action
        when :start, :restart
          @attributes[:running?] = true
        when :stop
          @attributes[:running?] = false
        when :enable
          @attributes[:enabled?] = true
        when :disable
          @attributes[:enabled?] = false
        end
      end

      def set_current_attributes
        @current_attributes[:running?] = run_specinfra(:check_service_is_running, name)
        @current_attributes[:enabled?] = run_specinfra(:check_service_is_enabled, name)
      end

      def start_action(options)
        run_specinfra(:start_service, name)
      end

      def stop_action(options)
        run_specinfra(:stop_service, name)
      end

      def restart_action(options)
        run_specinfra(:restart_service, name)
      end

      def reload_action(options)
        run_specinfra(:reload_service, name)
      end

      def enable_action(options)
        run_specinfra(:enable_service, name)
      end

      def disable_action(options)
        run_specinfra(:disable_service, name)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
itamae-1.0.0.beta37 lib/itamae/resource/service.rb
itamae-1.0.0.beta36 lib/itamae/resource/service.rb
itamae-1.0.0.beta35 lib/itamae/resource/service.rb
itamae-1.0.0.beta34 lib/itamae/resource/service.rb