setup_oob 0.0.1 → 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: ef36b57d84c15b988bdd3bafdcde5ec3f6a7b14a5d5af7a3b9e1755d427a2af6
4
- data.tar.gz: 0a22b11dd0a28a56a5fb99436645ce276789809b4d39dfd2f95a4afe54bb9ee3
3
+ metadata.gz: f3a93919678e2246cd785a74270e4fa4ea3fdeff672cc5297a49499d2ad5957d
4
+ data.tar.gz: a294bc86ab47251df59da69e8531fda1362c0eb8fc39900ae8b57295600b44e5
5
5
  SHA512:
6
- metadata.gz: fad91e1545018c965d3ec0ef487f514bab543e229dcb9b181ff2fa3327ba6b7b08f69d156fd462559573a08c3f3e9ac833b4808faea466a2ff03db63b1a65dbd
7
- data.tar.gz: 596e877ee79a6bbe5a9923dbff6734bb7ffed2a7f7641c35620956e6042185cc7dc228860b7502b9c910ad17385d93df600c5c902c39f59ce12a848ad4d977db
6
+ metadata.gz: f542cdc28aa71b2ca0d6859213e0784ea56a5b555ed8e7d7abcc37393316e2f7905d20ee1ecf5fbd978e607e59118430e3edc5f45c22418cec2eaa0cf9236ccd
7
+ data.tar.gz: d3bc7d12c434d742a0948eabbbc2f48feefdcae3f3180a8f145da5f1216ad77565814d016a82984f23736b99b6506fa5710427f5b050c916059b35f5226423c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.3
4
+
5
+ - Update Ruby requirements
6
+ - Fix shebang line
7
+
8
+ ## 0.0.2
9
+
10
+ - Fix gem dependencies
11
+
3
12
  ## 0.0.1
4
13
 
5
14
  - Initial release
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.1'.freeze
2
+ VERSION = '0.0.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,18 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: setup_oob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
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: 2021-12-15 00:00:00.000000000 Z
13
- dependencies: []
12
+ date: 2024-03-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: ipaddress
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: mixlib-shellout
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
14
42
  description: Utility for configuring OOB devices from linux
15
- email:
43
+ email:
16
44
  executables:
17
45
  - setup-oob
18
46
  extensions: []
@@ -34,8 +62,9 @@ files:
34
62
  homepage: https://github.com/vicariousinc/setup-oob
35
63
  licenses:
36
64
  - Apache-2.0
37
- metadata: {}
38
- post_install_message:
65
+ metadata:
66
+ rubygems_mfa_required: 'true'
67
+ post_install_message:
39
68
  rdoc_options: []
40
69
  require_paths:
41
70
  - lib
@@ -43,16 +72,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
43
72
  requirements:
44
73
  - - ">="
45
74
  - !ruby/object:Gem::Version
46
- version: 2.5.0
75
+ version: '3.0'
47
76
  required_rubygems_version: !ruby/object:Gem::Requirement
48
77
  requirements:
49
78
  - - ">="
50
79
  - !ruby/object:Gem::Version
51
80
  version: '0'
52
81
  requirements: []
53
- rubyforge_project:
54
- rubygems_version: 2.7.6
55
- signing_key:
82
+ rubygems_version: 3.3.7
83
+ signing_key:
56
84
  specification_version: 4
57
85
  summary: Setup OOB systems from Linux
58
86
  test_files: []