Class: Chef::Provider::SystemdUnit

Inherits:
Chef::Provider show all
Includes:
Mixin::ShellOut, Mixin::Which
Defined in:
lib/chef/provider/systemd_unit.rb

Instance Attribute Summary

Attributes inherited from Chef::Provider

#action, #current_resource, #logger, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods included from Mixin::ShellOut

#a_to_s, #clean_array, #shell_out, #shell_out!, #shell_out_compact, #shell_out_compact!, #shell_out_compact_timeout, #shell_out_compact_timeout!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!

Methods included from Mixin::PathSanity

#enforce_path_sanity, #sanitized_path

Methods included from Mixin::Which

#where, #which

Methods inherited from Chef::Provider

action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #cookbook_name, #description, #events, include_resource_dsl?, include_resource_dsl_module, #initialize, #introduced, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::Provides

#provided_as, #provides, #provides?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from Mixin::LazyModuleInclude

#descendants, #include, #included

Methods included from Mixin::NotifyingBlock

#notifying_block, #subcontext_block

Methods included from DSL::DeclareResource

#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #with_run_context

Methods included from Mixin::PowershellOut

#powershell_out, #powershell_out!

Methods included from Mixin::WindowsArchitectureHelper

#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory

Methods included from Mixin::PowershellExec

#powershell_exec

Methods included from DSL::PlatformIntrospection

#docker?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family

Constructor Details

This class inherits a constructor from Chef::Provider

Instance Method Details

#action_createObject



59
60
61
62
63
64
65
66
# File 'lib/chef/provider/systemd_unit.rb', line 59

def action_create
  if current_resource.content != new_resource.to_ini
    converge_by("creating unit: #{new_resource.unit_name}") do
      manage_unit_file(:create)
      daemon_reload if new_resource.triggers_reload
    end
  end
end

#action_deleteObject



68
69
70
71
72
73
74
75
# File 'lib/chef/provider/systemd_unit.rb', line 68

def action_delete
  if ::File.exist?(unit_path)
    converge_by("deleting unit: #{new_resource.unit_name}") do
      manage_unit_file(:delete)
      daemon_reload if new_resource.triggers_reload
    end
  end
end

#action_disableObject



101
102
103
104
105
106
107
108
109
110
111
# File 'lib/chef/provider/systemd_unit.rb', line 101

def action_disable
  if current_resource.static
    logger.trace("#{new_resource.unit_name} is a static unit, disabling is a NOP.")
  end

  if current_resource.enabled && !current_resource.static
    converge_by("disabling unit: #{new_resource.unit_name}") do
      systemctl_execute!(:disable, new_resource.unit_name)
    end
  end
end

#action_enableObject



89
90
91
92
93
94
95
96
97
98
99
# File 'lib/chef/provider/systemd_unit.rb', line 89

def action_enable
  if current_resource.static
    logger.trace("#{new_resource.unit_name} is a static unit, enabling is a NOP.")
  end

  unless current_resource.enabled || current_resource.static
    converge_by("enabling unit: #{new_resource.unit_name}") do
      systemctl_execute!(:enable, new_resource.unit_name)
    end
  end
end

#action_maskObject



119
120
121
122
123
124
125
# File 'lib/chef/provider/systemd_unit.rb', line 119

def action_mask
  unless current_resource.masked
    converge_by("masking unit: #{new_resource.unit_name}") do
      systemctl_execute!(:mask, new_resource.unit_name)
    end
  end
end

#action_presetObject



77
78
79
80
81
# File 'lib/chef/provider/systemd_unit.rb', line 77

def action_preset
  converge_by("restoring enable/disable preset configuration for unit: #{new_resource.unit_name}") do
    systemctl_execute!(:preset, new_resource.unit_name)
  end
end

#action_reenableObject



113
114
115
116
117
# File 'lib/chef/provider/systemd_unit.rb', line 113

def action_reenable
  converge_by("reenabling unit: #{new_resource.unit_name}") do
    systemctl_execute!(:reenable, new_resource.unit_name)
  end
end

#action_reloadObject



157
158
159
160
161
162
163
164
165
# File 'lib/chef/provider/systemd_unit.rb', line 157

def action_reload
  if current_resource.active
    converge_by("reloading unit: #{new_resource.unit_name}") do
      systemctl_execute!(:reload, new_resource.unit_name)
    end
  else
    logger.trace("#{new_resource.unit_name} is not active, skipping reload.")
  end
end

#action_reload_or_restartObject



173
174
175
176
177
# File 'lib/chef/provider/systemd_unit.rb', line 173

def action_reload_or_restart
  converge_by("reload-or-restarting unit: #{new_resource.unit_name}") do
    systemctl_execute!("reload-or-restart", new_resource.unit_name)
  end
end

#action_reload_or_try_restartObject



179
180
181
182
183
# File 'lib/chef/provider/systemd_unit.rb', line 179

def action_reload_or_try_restart
  converge_by("reload-or-try-restarting unit: #{new_resource.unit_name}") do
    systemctl_execute!("reload-or-try-restart", new_resource.unit_name)
  end
end

#action_restartObject



151
152
153
154
155
# File 'lib/chef/provider/systemd_unit.rb', line 151

def action_restart
  converge_by("restarting unit: #{new_resource.unit_name}") do
    systemctl_execute!(:restart, new_resource.unit_name)
  end
end

#action_revertObject



83
84
85
86
87
# File 'lib/chef/provider/systemd_unit.rb', line 83

def action_revert
  converge_by("reverting to vendor version of unit: #{new_resource.unit_name}") do
    systemctl_execute!(:revert, new_resource.unit_name)
  end
end

#action_startObject



135
136
137
138
139
140
141
# File 'lib/chef/provider/systemd_unit.rb', line 135

def action_start
  unless current_resource.active
    converge_by("starting unit: #{new_resource.unit_name}") do
      systemctl_execute!(:start, new_resource.unit_name)
    end
  end
end

#action_stopObject



143
144
145
146
147
148
149
# File 'lib/chef/provider/systemd_unit.rb', line 143

def action_stop
  if current_resource.active
    converge_by("stopping unit: #{new_resource.unit_name}") do
      systemctl_execute!(:stop, new_resource.unit_name)
    end
  end
end

#action_try_restartObject



167
168
169
170
171
# File 'lib/chef/provider/systemd_unit.rb', line 167

def action_try_restart
  converge_by("try-restarting unit: #{new_resource.unit_name}") do
    systemctl_execute!("try-restart", new_resource.unit_name)
  end
end

#action_unmaskObject



127
128
129
130
131
132
133
# File 'lib/chef/provider/systemd_unit.rb', line 127

def action_unmask
  if current_resource.masked
    converge_by("unmasking unit: #{new_resource.unit_name}") do
      systemctl_execute!(:unmask, new_resource.unit_name)
    end
  end
end

#active?Boolean

Returns:

  • (Boolean)


185
186
187
# File 'lib/chef/provider/systemd_unit.rb', line 185

def active?
  systemctl_execute("is-active", new_resource.unit_name).exitstatus == 0
end

#define_resource_requirementsObject



50
51
52
53
54
55
56
57
# File 'lib/chef/provider/systemd_unit.rb', line 50

def define_resource_requirements
  super

  requirements.assert(:create) do |a|
    a.assertion { IniParse.parse(new_resource.to_ini) }
    a.failure_message "Unit content is not valid INI text"
  end
end

#enabled?Boolean

Returns:

  • (Boolean)


189
190
191
# File 'lib/chef/provider/systemd_unit.rb', line 189

def enabled?
  systemctl_execute("is-enabled", new_resource.unit_name).exitstatus == 0
end

#load_current_resourceObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/chef/provider/systemd_unit.rb', line 35

def load_current_resource
  @current_resource = Chef::Resource::SystemdUnit.new(new_resource.name)

  current_resource.unit_name(new_resource.unit_name)
  current_resource.content(::File.read(unit_path)) if ::File.exist?(unit_path)
  current_resource.user(new_resource.user)
  current_resource.enabled(enabled?)
  current_resource.active(active?)
  current_resource.masked(masked?)
  current_resource.static(static?)
  current_resource.triggers_reload(new_resource.triggers_reload)

  current_resource
end

#masked?Boolean

Returns:

  • (Boolean)


193
194
195
# File 'lib/chef/provider/systemd_unit.rb', line 193

def masked?
  systemctl_execute(:status, new_resource.unit_name).stdout.include?("masked")
end

#static?Boolean

Returns:

  • (Boolean)


197
198
199
# File 'lib/chef/provider/systemd_unit.rb', line 197

def static?
  systemctl_execute("is-enabled", new_resource.unit_name).stdout.include?("static")
end