Sha256: fd426020fcfc86d0160af01b8e89585569f9d6e7124542aaa547cd5263d56df1

Contents?: true

Size: 1.76 KB

Versions: 21

Compression:

Stored size: 1.76 KB

Contents

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

      def initialize(*args)
        super
        @under = attributes.provider ? "_under_#{attributes.provider}" : ""
      end

      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.running = run_specinfra(:"check_service_is_running#{@under}", attributes.name)
        current.enabled = run_specinfra(:"check_service_is_enabled#{@under}", attributes.name)
      end

      def action_start(options)
        unless current.running
          run_specinfra(:"start_service#{@under}", attributes.name)
        end
      end

      def action_stop(options)
        if current.running
          run_specinfra(:"stop_service#{@under}", attributes.name)
        end
      end

      def action_restart(options)
        run_specinfra(:"restart_service#{@under}", attributes.name)
      end

      def action_reload(options)
        if current.running
          run_specinfra(:"reload_service#{@under}", attributes.name)
        end
      end

      def action_enable(options)
        unless current.enabled
          run_specinfra(:"enable_service#{@under}", attributes.name)
        end
      end

      def action_disable(options)
        if current.enabled
          run_specinfra(:"disable_service#{@under}", attributes.name)
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
itamae-1.14.1 lib/itamae/resource/service.rb
itamae-1.14.0 lib/itamae/resource/service.rb
itamae-1.13.1 lib/itamae/resource/service.rb
itamae-1.13.0 lib/itamae/resource/service.rb
itamae-1.12.6 lib/itamae/resource/service.rb
itamae-1.12.5 lib/itamae/resource/service.rb
itamae-1.12.4 lib/itamae/resource/service.rb
itamae-1.12.3 lib/itamae/resource/service.rb
itamae-1.12.2 lib/itamae/resource/service.rb
itamae-1.12.1 lib/itamae/resource/service.rb
itamae-1.12.0 lib/itamae/resource/service.rb
itamae-1.11.2 lib/itamae/resource/service.rb
itamae-1.11.1 lib/itamae/resource/service.rb
itamae-1.11.0 lib/itamae/resource/service.rb
itamae-1.10.10 lib/itamae/resource/service.rb
itamae-1.10.9 lib/itamae/resource/service.rb
itamae-1.10.8 lib/itamae/resource/service.rb
itamae-1.10.7 lib/itamae/resource/service.rb
itamae-1.10.6 lib/itamae/resource/service.rb
itamae-1.10.5 lib/itamae/resource/service.rb