specinfra 2.46.0 → 2.47.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 +4 -4
- data/lib/specinfra/command/linuxmint/base.rb +2 -0
- data/lib/specinfra/command/linuxmint.rb +1 -0
- data/lib/specinfra/command.rb +4 -0
- data/lib/specinfra/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40813b3f02f69c05b1120dd55be3ae6abd9fb15b
|
|
4
|
+
data.tar.gz: 4f90b95dd524956b4aee36975e9a04aa9b26d6ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc27521201db788305d69996d95fa16945786869c15b6d296ac406531d657615082bfa2f7c397991aaee1c1cc7abb138971714b720008759f39458c05d36bbd5
|
|
7
|
+
data.tar.gz: c18a8d7340fcb836d43ae604793975e8b9da64cf87353ba70cc6ce8b07d16e058688cb639f67263c9edc24f84e7e6a70f6c628d023f89a60380fa1b99e96c083
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
class Specinfra::Command::Linuxmint; end
|
data/lib/specinfra/command.rb
CHANGED
|
@@ -176,6 +176,10 @@ require 'specinfra/command/ubuntu/base/service'
|
|
|
176
176
|
require 'specinfra/command/ubuntu/v15'
|
|
177
177
|
require 'specinfra/command/ubuntu/v15/service'
|
|
178
178
|
|
|
179
|
+
# Linux Mint (inherit Ubuntu)
|
|
180
|
+
require 'specinfra/command/linuxmint'
|
|
181
|
+
require 'specinfra/command/linuxmint/base'
|
|
182
|
+
|
|
179
183
|
# Cumulus Networks (inherit Debian)
|
|
180
184
|
require 'specinfra/command/cumulus'
|
|
181
185
|
require 'specinfra/command/cumulus/base'
|
data/lib/specinfra/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: specinfra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.47.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gosuke Miyashita
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-scp
|
|
@@ -295,6 +295,8 @@ files:
|
|
|
295
295
|
- lib/specinfra/command/linux/base/service.rb
|
|
296
296
|
- lib/specinfra/command/linux/base/yumrepo.rb
|
|
297
297
|
- lib/specinfra/command/linux/base/zfs.rb
|
|
298
|
+
- lib/specinfra/command/linuxmint.rb
|
|
299
|
+
- lib/specinfra/command/linuxmint/base.rb
|
|
298
300
|
- lib/specinfra/command/module.rb
|
|
299
301
|
- lib/specinfra/command/module/service/daemontools.rb
|
|
300
302
|
- lib/specinfra/command/module/service/delegator.rb
|