Sha256: f6ec8548cc8b2cde0335a905fc709505d556f193134db39613ede54f5bbc7c38
Contents?: true
Size: 817 Bytes
Versions: 20
Compression:
Stored size: 817 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(initscript, 'enable') end def disable system(initscript, 'disable') end def enabled? # We can't define the "command" for the init script, so we call system? system(initscript, 'enabled') ? (return :true) : (return :false) 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
20 entries across 20 versions & 1 rubygems