summaryrefslogtreecommitdiffstats
path: root/lib/puppet/provider/service/bsd.rb
blob: e2a0e35f7156d40b331184b5fd847e53061f2c54 (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
# Manage FreeBSD services.
Puppet::Type.type(:service).provide :bsd, :parent => :init do
  desc "FreeBSD's (and probably NetBSD?) form of `init`-style service management.

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

"

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

  @@rcconf_dir = '/etc/rc.conf.d'

  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