specinfra 2.29.0 → 2.30.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f357e2d9dd0052d93e031ff0ab995676881a9e7
|
4
|
+
data.tar.gz: f44129092f67930e1d6bfa85617a0a2f03f51cef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5703a678505aed8dc3a3f0056d991baf5b9bd7f9ff32b04f8c21d149655cd030d2c89d1a26676185428e3500b976ba664e1906164c4dd5181d9d05ad7e296f4
|
7
|
+
data.tar.gz: ed15066bd2835573211a065148b148792e21dcfe270caaeef7558aacab8d3088ee6340435937344cfbbe599b524555559a127b0c0294f2aaa8462e97875a64c8
|
@@ -0,0 +1,9 @@
|
|
1
|
+
class Specinfra::Command::Openbsd::Base::Fstab < Specinfra::Command::Base::Fstab
|
2
|
+
class << self
|
3
|
+
def check_has_entry(mount_point)
|
4
|
+
%Q(awk '{if($2=="#{escape(mount_point)}")print}' /etc/fstab | grep -v '^[[:space:]]*#')
|
5
|
+
end
|
6
|
+
|
7
|
+
alias :get_entry :check_has_entry
|
8
|
+
end
|
9
|
+
end
|
data/lib/specinfra/command.rb
CHANGED
@@ -192,8 +192,10 @@ require 'specinfra/command/freebsd/v10/package'
|
|
192
192
|
# OpenBSD (inherit Base)
|
193
193
|
require 'specinfra/command/openbsd'
|
194
194
|
require 'specinfra/command/openbsd/base'
|
195
|
+
require 'specinfra/command/openbsd/base/bond'
|
195
196
|
require 'specinfra/command/openbsd/base/bridge'
|
196
197
|
require 'specinfra/command/openbsd/base/file'
|
198
|
+
require 'specinfra/command/openbsd/base/fstab'
|
197
199
|
require 'specinfra/command/openbsd/base/interface'
|
198
200
|
require 'specinfra/command/openbsd/base/mail_alias'
|
199
201
|
require 'specinfra/command/openbsd/base/package'
|
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.30.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-04-
|
11
|
+
date: 2015-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-ssh
|
@@ -252,8 +252,10 @@ files:
|
|
252
252
|
- lib/specinfra/command/nixos/base/service.rb
|
253
253
|
- lib/specinfra/command/openbsd.rb
|
254
254
|
- lib/specinfra/command/openbsd/base.rb
|
255
|
+
- lib/specinfra/command/openbsd/base/bond.rb
|
255
256
|
- lib/specinfra/command/openbsd/base/bridge.rb
|
256
257
|
- lib/specinfra/command/openbsd/base/file.rb
|
258
|
+
- lib/specinfra/command/openbsd/base/fstab.rb
|
257
259
|
- lib/specinfra/command/openbsd/base/interface.rb
|
258
260
|
- lib/specinfra/command/openbsd/base/mail_alias.rb
|
259
261
|
- lib/specinfra/command/openbsd/base/package.rb
|