Sha256: 323116087ccc224704d6e435e3c4496bf2ced8b74ac778a20fbc7594cf2cf229
Contents?: true
Size: 841 Bytes
Versions: 12
Compression:
Stored size: 841 Bytes
Contents
# frozen_string_literal: true Puppet::Type.type(:service).provide :openwrt, :parent => :init, :source => :init do desc <<-EOT Support for OpenWrt flavored init scripts. Uses /etc/init.d/service_name enable, disable, and enabled. EOT defaultfor 'os.name' => :openwrt confine 'os.name' => :openwrt has_feature :enableable def self.defpath ["/etc/init.d"] end def enable system(self.initscript, 'enable') end def disable system(self.initscript, 'disable') end def enabled? # We can't define the "command" for the init script, so we call system? if system(self.initscript, 'enabled') then return :true else return :false end end # Purposely leave blank so we fail back to ps based status detection # As OpenWrt init script do not have status commands def statuscmd end end
Version data entries
12 entries across 12 versions & 1 rubygems