blob: 1968f8f3dea6835f8a43f9f56135fa34a92aacdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#
# Author:: kaustubh (<kaustubh@clogeny.com>)
# Copyright:: Copyright (c) 2014 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "chef/provider/service"
class Chef
class Provider
class Service
class Aix < Chef::Provider::Service
attr_reader :status_load_success
provides :service, os: "aix"
def initialize(new_resource, run_context)
super
end
def load_current_resource
@current_resource = Chef::Resource::Service.new(@new_resource.name)
@current_resource.service_name(@new_resource.service_name)
@status_load_success = true
@priority_success = true
@is_resource_group = false
determine_current_status!
@current_resource
end
def whyrun_supported?
true
end
def start_service
if @is_resource_group
shell_out!("startsrc -g #{@new_resource.service_name}")
else
shell_out!("startsrc -s #{@new_resource.service_name}")
end
end
def stop_service
if @is_resource_group
shell_out!("stopsrc -g #{@new_resource.service_name}")
else
shell_out!("stopsrc -s #{@new_resource.service_name}")
end
end
def restart_service
stop_service
start_service
end
def reload_service
if @is_resource_group
shell_out!("refresh -g #{@new_resource.service_name}")
else
shell_out!("refresh -s #{@new_resource.service_name}")
end
end
def shared_resource_requirements
super
requirements.assert(:all_actions) do |a|
a.assertion { @status_load_success }
a.whyrun ["Service status not available. Assuming a prior action would have installed the service.", "Assuming status of not running."]
end
end
def define_resource_requirements
# FIXME? need reload from service.rb
shared_resource_requirements
end
protected
def determine_current_status!
Chef::Log.debug "#{@new_resource} using lssrc to check the status"
begin
if is_resource_group?
# Groups as a whole have no notion of whether they're running
@current_resource.running false
else
service = shell_out!("lssrc -s #{@new_resource.service_name}").stdout
if service.split(" ").last == "active"
@current_resource.running true
else
@current_resource.running false
end
end
Chef::Log.debug "#{@new_resource} running: #{@current_resource.running}"
# ShellOut sometimes throws different types of Exceptions than ShellCommandFailed.
# Temporarily catching different types of exceptions here until we get Shellout fixed.
# TODO: Remove the line before one we get the ShellOut fix.
rescue Mixlib::ShellOut::ShellCommandFailed, SystemCallError
@status_load_success = false
@current_resource.running false
nil
end
end
def is_resource_group?
so = shell_out("lssrc -g #{@new_resource.service_name}")
if so.exitstatus == 0
Chef::Log.debug("#{@new_resource.service_name} is a group")
@is_resource_group = true
end
end
end
end
end
end
|