setup_oob 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e37f878e0fdd08c8d47226384e9d9b1bc656e49c957e0bb4db46b546b0ac4d3a
4
- data.tar.gz: 1facb2ac5aa33efb16ff376328a39902a82440a7830e2f17b4daaccf74639d1f
3
+ metadata.gz: f3a93919678e2246cd785a74270e4fa4ea3fdeff672cc5297a49499d2ad5957d
4
+ data.tar.gz: a294bc86ab47251df59da69e8531fda1362c0eb8fc39900ae8b57295600b44e5
5
5
  SHA512:
6
- metadata.gz: 9a503ca8d0f0000e2b4924c650891809ae0948f75b26137ddca718138d43464c571c7e7953b3a9a4e0edda9546984adb20df2213fca97c8b75801da0afbff354
7
- data.tar.gz: f50eaffb005367ad8f55cd4158b122bcbaffebf210f360df1e94cb2718eb195bb8e4a7c856980e7da218e29eeb5788b4c4f12415f4fff0170fb1f87afff58b67
6
+ metadata.gz: f542cdc28aa71b2ca0d6859213e0784ea56a5b555ed8e7d7abcc37393316e2f7905d20ee1ecf5fbd978e607e59118430e3edc5f45c22418cec2eaa0cf9236ccd
7
+ data.tar.gz: d3bc7d12c434d742a0948eabbbc2f48feefdcae3f3180a8f145da5f1216ad77565814d016a82984f23736b99b6506fa5710427f5b050c916059b35f5226423c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.3
4
+
5
+ - Update Ruby requirements
6
+ - Fix shebang line
7
+
3
8
  ## 0.0.2
4
9
 
5
10
  - Fix gem dependencies
data/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Setup OOB
2
2
 
3
- [![Continuous Integration](https://github.com/vicariousinc/setup-oob/workflows/Continuous%20Integration/badge.svg)](https://github.com/vicariousinc/setup-oob/actions?query=workflow%3AContinuous%20Integration)
3
+ [![Continuous Integration](https://github.com/jaymzh/setup-oob/workflows/Continuous%20Integration/badge.svg)](https://github.com/jaymzh/setup-oob/actions?query=workflow%3AContinuous%20Integration)
4
+
5
+ *NOTE*: This is a fork of
6
+ [viariousinc/setup-oob](https://github.com/vicariousinc/setup-oob) which is
7
+ defunct. This is now the official respository, feel free to send PRs or issues
8
+ here.
4
9
 
5
10
  This is a utility for configuring out-of-band management systems from within
6
11
  the running (Linux) OS.
data/bin/setup-oob CHANGED
@@ -1,4 +1,4 @@
1
- #!/opt/chef/embedded/bin/ruby
1
+ #!/usr/bin/env ruby
2
2
  # vim: syntax=ruby:expandtab:shiftwidth=2:softtabstop=2:tabstop=2
3
3
 
4
4
  # Copyright 2021-present Vicarious
@@ -142,7 +142,7 @@ class SMCCommands
142
142
  en = out[0] == 1
143
143
  # when you check if NTP is enabled, a bunch of extra bytes
144
144
  # are passed back that MUST be passed in when enabling NTP
145
- @_magic = out[1..-1]
145
+ @_magic = out[1..]
146
146
  logger.debug("NTP enabled: #{en}, magic bytes: #{@_magic}")
147
147
  en
148
148
  end
@@ -1,3 +1,3 @@
1
1
  class SetupOOB
2
- VERSION = '0.0.2'.freeze
2
+ VERSION = '0.0.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: setup_oob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phil Dibowitz
8
- autorequire:
8
+ autorequire:
9
9
  bindir:
10
10
  - bin
11
11
  cert_chain: []
12
- date: 2022-01-05 00:00:00.000000000 Z
12
+ date: 2024-03-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ipaddress
@@ -40,7 +40,7 @@ dependencies:
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0'
42
42
  description: Utility for configuring OOB devices from linux
43
- email:
43
+ email:
44
44
  executables:
45
45
  - setup-oob
46
46
  extensions: []
@@ -62,8 +62,9 @@ files:
62
62
  homepage: https://github.com/vicariousinc/setup-oob
63
63
  licenses:
64
64
  - Apache-2.0
65
- metadata: {}
66
- post_install_message:
65
+ metadata:
66
+ rubygems_mfa_required: 'true'
67
+ post_install_message:
67
68
  rdoc_options: []
68
69
  require_paths:
69
70
  - lib
@@ -71,16 +72,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
71
72
  requirements:
72
73
  - - ">="
73
74
  - !ruby/object:Gem::Version
74
- version: 2.5.0
75
+ version: '3.0'
75
76
  required_rubygems_version: !ruby/object:Gem::Requirement
76
77
  requirements:
77
78
  - - ">="
78
79
  - !ruby/object:Gem::Version
79
80
  version: '0'
80
81
  requirements: []
81
- rubyforge_project:
82
- rubygems_version: 2.7.6
83
- signing_key:
82
+ rubygems_version: 3.3.7
83
+ signing_key:
84
84
  specification_version: 4
85
85
  summary: Setup OOB systems from Linux
86
86
  test_files: []