specinfra 2.36.9 → 2.36.10
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 224ce31465a9d1899e999b9baeee10eed1525e11
|
|
4
|
+
data.tar.gz: d82a9c7b3951ac77d8e18348dbfc19a9fb3fe805
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 100db91103b3f64f583529f200f5e17ce3d688825dc27549d100ffa654b4329b82227c9387e8b455f92412d034eabf5d8b81e0563c8f09acebc3a32fd6e7b10e
|
|
7
|
+
data.tar.gz: eeb6c72999513783ae4703bd63b454f4cd5961e81ea22267efa532c53dbe7c17cb435754a90b8eae830ca6fe0acc18016f4ee68e2f06254172dad4ecdcef8989
|
data/lib/specinfra/command.rb
CHANGED
|
@@ -161,6 +161,10 @@ require 'specinfra/command/ubuntu/base'
|
|
|
161
161
|
require 'specinfra/command/ubuntu/base/ppa'
|
|
162
162
|
require 'specinfra/command/ubuntu/base/service'
|
|
163
163
|
|
|
164
|
+
# Ubuntu v15.xx (inherit Ubuntu)
|
|
165
|
+
require 'specinfra/command/ubuntu/v15'
|
|
166
|
+
require 'specinfra/command/ubuntu/v15/service'
|
|
167
|
+
|
|
164
168
|
# Cumulus Networks (inherit Debian)
|
|
165
169
|
require 'specinfra/command/cumulus'
|
|
166
170
|
require 'specinfra/command/cumulus/base'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
class Specinfra::Command::Ubuntu::V15 < Specinfra::Command::Debian::Base; end
|
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.36.
|
|
4
|
+
version: 2.36.10
|
|
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-
|
|
11
|
+
date: 2015-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-scp
|
|
@@ -344,6 +344,8 @@ files:
|
|
|
344
344
|
- lib/specinfra/command/ubuntu/base.rb
|
|
345
345
|
- lib/specinfra/command/ubuntu/base/ppa.rb
|
|
346
346
|
- lib/specinfra/command/ubuntu/base/service.rb
|
|
347
|
+
- lib/specinfra/command/ubuntu/v15.rb
|
|
348
|
+
- lib/specinfra/command/ubuntu/v15/service.rb
|
|
347
349
|
- lib/specinfra/command/windows.rb
|
|
348
350
|
- lib/specinfra/command/windows/base.rb
|
|
349
351
|
- lib/specinfra/command/windows/base/feature.rb
|
|
@@ -531,3 +533,4 @@ test_files:
|
|
|
531
533
|
- spec/host_inventory/linux/filesystem_spec.rb
|
|
532
534
|
- spec/host_inventory/linux/memory_spec.rb
|
|
533
535
|
- spec/spec_helper.rb
|
|
536
|
+
has_rdoc:
|