metadata.rb
1.01 KB
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
maintainer        "Opscode, Inc."
maintainer_email  "cookbooks@opscode.com"
license           "Apache 2.0"
description       "Installs runit and provides runit_service definition"
version           "0.14.2"
recipe "runit", "Installs and configures runit"
%w{ ubuntu debian gentoo }.each do |os|
  supports os
end
attribute "runit",
  :display_name => "Runit",
  :description => "Hash of runit attributes",
  :type => "hash"
attribute "runit/sv_bin",
  :display_name => "Runit sv bin",
  :description => "Location of the sv binary",
  :default => "/usr/bin/sv"
attribute "runit/chpst_bin",
  :display_name => "Runit chpst bin",
  :description => "Location of the chpst binary",
  :default => "/usr/bin/chpst"
attribute "runit/service_dir",
  :display_name => "Runit service directory",
  :description => "Symlinks to services managed under runit",
  :default => "/etc/service"
attribute "runit/sv_dir",
  :display_name => "Runit sv directory",
  :description => "Location of services managed by runit",
  :default => "/etc/sv"