chef-provider-service-daemontools 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +48 -0
- data/Rakefile +6 -0
- data/chef-provider-service-daemontools.gemspec +26 -0
- data/lib/chef/provider/service/daemontools/version.rb +9 -0
- data/lib/chef/provider/service/daemontools.rb +104 -0
- data/spec/chef/provider/service/daemontools_spec.rb +7 -0
- data/spec/spec_helper.rb +3 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8a601c02e621e78cf169ca585442ce6b548a52b1
|
4
|
+
data.tar.gz: 56f20ec4515786b661edf1ed3c2af0b28d6af5ab
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6edf19d502619e776a6fa9386377a9f7a7d56431938e80b198847565487f64dc5b47660c0626e302fb76595eba6cb167e6741b077ab77105067642368be698c0
|
7
|
+
data.tar.gz: 66d22b2914f685d9a0498d61212324bfbc293263e18d008c75fee583214ecd6d82b8a006dec987f80bf3e415db743b02faaae9efc3420693f6baa4d68ce1384c
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 HIROSE Masaaki
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# Chef::Provider::Service::Daemontools
|
2
|
+
|
3
|
+
Chef's provider to manage service under daemontools.
|
4
|
+
|
5
|
+
You can transparently manage processes under daemontools using `service` resource.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'chef-provider-service-daemontools'
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install chef-provider-service-daemontools
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require 'chef/provider/service/daemontools'
|
25
|
+
|
26
|
+
service 'tinydns-internal' do
|
27
|
+
provider Chef::Provider::Service::Daemontools
|
28
|
+
service_dir '/service'
|
29
|
+
directory '/etc/djbdns/tinydns-internal'
|
30
|
+
supports :restart => true, :reload => true
|
31
|
+
action [:enable, :start]
|
32
|
+
end
|
33
|
+
```
|
34
|
+
|
35
|
+
- provider (required)
|
36
|
+
- `Chef::Provider::Service::Daemontools`
|
37
|
+
- service_dir (optional)
|
38
|
+
- directory that svscan monitors. default is `/service`
|
39
|
+
- directory (required)
|
40
|
+
- directory contains `run` file
|
41
|
+
|
42
|
+
## Contributing
|
43
|
+
|
44
|
+
1. Fork it ( https://github.com/hirose31/chef-provider-service-daemontools/fork )
|
45
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
46
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
47
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
48
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'chef/provider/service/daemontools/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "chef-provider-service-daemontools"
|
8
|
+
spec.version = Chef::Provider::Service::Daemontools::VERSION
|
9
|
+
spec.authors = ["HIROSE Masaaki"]
|
10
|
+
spec.email = ["hirose31@gmail.com"]
|
11
|
+
spec.summary = %q{Chef's provider to manage service under daemontools.}
|
12
|
+
spec.description = %q{Chef's provider to manage service under daemontools.}
|
13
|
+
spec.homepage = "https://github.com/hirose31/chef-provider-service-daemontools"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "chef"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
require "chef/provider/service/daemontools/version"
|
2
|
+
|
3
|
+
require 'chef/mixin/shell_out'
|
4
|
+
require 'chef/provider/service'
|
5
|
+
require 'chef/resource/service'
|
6
|
+
require 'chef/mixin/command'
|
7
|
+
|
8
|
+
class Chef
|
9
|
+
class Resource
|
10
|
+
class Service
|
11
|
+
def directory(arg=nil)
|
12
|
+
set_or_return(
|
13
|
+
:directory,
|
14
|
+
arg,
|
15
|
+
:kind_of => [ String ]
|
16
|
+
)
|
17
|
+
end
|
18
|
+
def service_dir(arg=nil)
|
19
|
+
set_or_return(
|
20
|
+
:service_dir,
|
21
|
+
arg,
|
22
|
+
:kind_of => [ String ]
|
23
|
+
) || '/service'
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class Chef
|
30
|
+
class Provider
|
31
|
+
class Service
|
32
|
+
class Daemontools < Chef::Provider::Service
|
33
|
+
include Chef::Mixin::ShellOut
|
34
|
+
|
35
|
+
def initialize(new_resource, run_context=nil)
|
36
|
+
super
|
37
|
+
@svc_command = 'svc'
|
38
|
+
@svstat_command = 'svstat'
|
39
|
+
end
|
40
|
+
|
41
|
+
def load_current_resource
|
42
|
+
@current_resource = Chef::Resource::Service.new(@new_resource.name)
|
43
|
+
@current_resource.service_name(@new_resource.service_name)
|
44
|
+
|
45
|
+
service_status!
|
46
|
+
@current_resource
|
47
|
+
end
|
48
|
+
|
49
|
+
def enable_service
|
50
|
+
if !@current_resource.enabled
|
51
|
+
::File.symlink(@new_resource.directory, "#{@new_resource.service_dir}/#{@new_resource.service_name}")
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def disable_service
|
56
|
+
if @current_resource.enabled
|
57
|
+
service_link = "#{@new_resource.service_dir}/#{@new_resource.service_name}"
|
58
|
+
shell_out!("#{@svc_command} -dx . log; rm -f #{service_link}", :cwd => service_link)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def start_service
|
63
|
+
shell_out!("#{@svc_command} -u #{@new_resource.service_dir}/#{@new_resource.service_name}")
|
64
|
+
end
|
65
|
+
|
66
|
+
def stop_service
|
67
|
+
shell_out!("#{@svc_command} -d #{@new_resource.service_dir}/#{@new_resource.service_name}")
|
68
|
+
end
|
69
|
+
|
70
|
+
def reload_service
|
71
|
+
shell_out!("#{@svc_command} -h #{@new_resource.service_dir}/#{@new_resource.service_name}")
|
72
|
+
end
|
73
|
+
|
74
|
+
def restart_service
|
75
|
+
shell_out!("#{@svc_command} -t #{@new_resource.service_dir}/#{@new_resource.service_name}")
|
76
|
+
end
|
77
|
+
|
78
|
+
def service_status!
|
79
|
+
service_link = "#{@current_resource.service_dir}/#{@current_resource.service_name}"
|
80
|
+
if ::File.symlink?(service_link) && ::File.exist?("#{service_link}/run")
|
81
|
+
@current_resource.enabled(true)
|
82
|
+
status = shell_out!("#{@svstat_command} #{service_link}")
|
83
|
+
if status.exitstatus == 0
|
84
|
+
if status.stdout =~ /: up \(pid [1-9]/
|
85
|
+
@current_resource.running(true)
|
86
|
+
elsif status.stdout =~ /: down [1-9]/
|
87
|
+
@current_resource.running(false)
|
88
|
+
else
|
89
|
+
@current_resource.running(false)
|
90
|
+
end
|
91
|
+
else
|
92
|
+
@current_resource.running(false)
|
93
|
+
end
|
94
|
+
else
|
95
|
+
@current_resource.enabled(false)
|
96
|
+
@current_resource.running(false)
|
97
|
+
end
|
98
|
+
|
99
|
+
@current_resource
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chef-provider-service-daemontools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- HIROSE Masaaki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-07-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: chef
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.6'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Chef's provider to manage service under daemontools.
|
70
|
+
email:
|
71
|
+
- hirose31@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- chef-provider-service-daemontools.gemspec
|
84
|
+
- lib/chef/provider/service/daemontools.rb
|
85
|
+
- lib/chef/provider/service/daemontools/version.rb
|
86
|
+
- spec/chef/provider/service/daemontools_spec.rb
|
87
|
+
- spec/spec_helper.rb
|
88
|
+
homepage: https://github.com/hirose31/chef-provider-service-daemontools
|
89
|
+
licenses:
|
90
|
+
- MIT
|
91
|
+
metadata: {}
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.2.2
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Chef's provider to manage service under daemontools.
|
112
|
+
test_files:
|
113
|
+
- spec/chef/provider/service/daemontools_spec.rb
|
114
|
+
- spec/spec_helper.rb
|