Sha256: 8c6249f67861a5236bb9640995a0ec002898d3aef4bc92ef8c89e8c7201420a2

Contents?: true

Size: 1.29 KB

Versions: 11

Compression:

Stored size: 1.29 KB

Contents

# Manage FreeBSD services.
Puppet::Type.type(:service).provide :bsd, :parent => :init do
  desc <<-EOT
    FreeBSD's (and probably NetBSD's?) form of `init`-style service management.

    Uses `rc.conf.d` for service enabling and disabling.

  EOT

  confine :operatingsystem => [:freebsd, :netbsd, :openbsd]

  def rcconf_dir
    '/etc/rc.conf.d'
  end

  def self.defpath
    superclass.defpath
  end

  # remove service file from rc.conf.d to disable it
  def disable
    rcfile = File.join(rcconf_dir, @model[:name])
    File.delete(rcfile) if File.exists?(rcfile)
  end

  # if the service file exists in rc.conf.d then it's already enabled
  def enabled?
    rcfile = File.join(rcconf_dir, @model[:name])
    return :true if File.exists?(rcfile)

    :false
  end

  # enable service by creating a service file under rc.conf.d with the
  # proper contents
  def enable
    Dir.mkdir(rcconf_dir) if not File.exists?(rcconf_dir)
    rcfile = File.join(rcconf_dir, @model[:name])
    open(rcfile, 'w') { |f| f << "%s_enable=\"YES\"\n" % @model[:name] }
  end

  # Override stop/start commands to use one<cmd>'s and the avoid race condition
  # where provider trys to stop/start the service before it is enabled
  def startcmd
    [self.initscript, :onestart]
  end

  def stopcmd
    [self.initscript, :onestop]
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
puppet-3.0.2 lib/puppet/provider/service/bsd.rb
puppet-3.0.2.rc3 lib/puppet/provider/service/bsd.rb
puppet-3.0.2.rc2 lib/puppet/provider/service/bsd.rb
puppet-3.0.2.rc1 lib/puppet/provider/service/bsd.rb
puppet-3.0.1 lib/puppet/provider/service/bsd.rb
puppet-3.0.1.rc1 lib/puppet/provider/service/bsd.rb
puppet-3.0.0 lib/puppet/provider/service/bsd.rb
puppet-3.0.0.rc8 lib/puppet/provider/service/bsd.rb
puppet-3.0.0.rc7 lib/puppet/provider/service/bsd.rb
puppet-3.0.0.rc5 lib/puppet/provider/service/bsd.rb
puppet-3.0.0.rc4 lib/puppet/provider/service/bsd.rb