linux_admin 1.0.0 → 1.0.1
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
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f0a9b1d0bd176283e9a4d0611e56c3b891699f6045ba164450cabf12676c3e54
|
4
|
+
data.tar.gz: 2922af28fd23935d3af3b697a025f02ff36c7651c203a5093057b6a2ce080fdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94bdbfe6c896dc488582134532f5a15a26c86076fb8351efc55b9c5c5617a78ab0cf2bfc6a8154e07df5c9acec44f659b3ade9080b91c8bfe66c50eec3092aa8
|
7
|
+
data.tar.gz: 7a1453c3a0e04d3d32d7a4ef9c4a585ec66547ed92529e19055947dd077befd6431b3d50edf3c094c3d75741053896b5bef313a484f208d71d708f2da2f6c8c1
|
@@ -5,7 +5,7 @@ module LinuxAdmin
|
|
5
5
|
SATELLITE5_SERVER_CERT_PATH = "pub/rhn-org-trusted-ssl-cert-1.0-1.noarch.rpm"
|
6
6
|
INSTALLED_SERVER_CERT_PATH = "/usr/share/rhn/RHN-ORG-TRUSTED-SSL-CERT"
|
7
7
|
|
8
|
-
def registered?
|
8
|
+
def registered?(_options = nil)
|
9
9
|
id = ""
|
10
10
|
if File.exist?(systemid_file)
|
11
11
|
xml = Nokogiri.XML(File.read(systemid_file))
|
@@ -15,8 +15,10 @@ module LinuxAdmin
|
|
15
15
|
!!organizations(options)
|
16
16
|
end
|
17
17
|
|
18
|
-
def registered?
|
19
|
-
|
18
|
+
def registered?(options = nil)
|
19
|
+
args = ["subscription-manager identity"]
|
20
|
+
args << {:params => proxy_params(options)} if options
|
21
|
+
Common.run(*args).exit_status.zero?
|
20
22
|
end
|
21
23
|
|
22
24
|
def refresh
|
data/lib/linux_admin/version.rb
CHANGED
@@ -28,9 +28,36 @@ describe LinuxAdmin::RegistrationSystem do
|
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
context "#registered?" do
|
32
|
+
it "when unregistered" do
|
33
|
+
stub_registered_to_system(nil)
|
34
|
+
expect(described_class.registered?).to be_falsey
|
35
|
+
end
|
36
|
+
|
37
|
+
context "SubscriptionManager" do
|
38
|
+
it "with no args" do
|
39
|
+
expect(LinuxAdmin::Common).to receive(:run).with("subscription-manager identity").and_return(double(:exit_status => 0))
|
40
|
+
|
41
|
+
LinuxAdmin::SubscriptionManager.new.registered?
|
42
|
+
end
|
43
|
+
|
44
|
+
it "with a proxy" do
|
45
|
+
expect(LinuxAdmin::Common).to receive(:run).with(
|
46
|
+
"subscription-manager identity",
|
47
|
+
:params => {
|
48
|
+
"--proxy=" => "https://example.com",
|
49
|
+
"--proxyuser=" => "user",
|
50
|
+
"--proxypassword=" => "pass"
|
51
|
+
}
|
52
|
+
).and_return(double(:exit_status => 0))
|
53
|
+
|
54
|
+
LinuxAdmin::SubscriptionManager.new.registered?(
|
55
|
+
:proxy_address => "https://example.com",
|
56
|
+
:proxy_username => "user",
|
57
|
+
:proxy_password => "pass"
|
58
|
+
)
|
59
|
+
end
|
60
|
+
end
|
34
61
|
end
|
35
62
|
|
36
63
|
context ".method_missing" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linux_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Dunne
|
@@ -21,7 +21,7 @@ authors:
|
|
21
21
|
autorequire:
|
22
22
|
bindir: bin
|
23
23
|
cert_chain: []
|
24
|
-
date:
|
24
|
+
date: 2018-01-10 00:00:00.000000000 Z
|
25
25
|
dependencies:
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: bundler
|
@@ -183,7 +183,7 @@ description: |2
|
|
183
183
|
It should be a single place to manage various system level configurations,
|
184
184
|
registration, updates, etc.
|
185
185
|
email:
|
186
|
-
-
|
186
|
+
- brandondunne@hotmail.com
|
187
187
|
- fryguy9@gmail.com
|
188
188
|
- mmorsi@redhat.com
|
189
189
|
- jrafanie@redhat.com
|
@@ -310,7 +310,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
310
310
|
version: '0'
|
311
311
|
requirements: []
|
312
312
|
rubyforge_project:
|
313
|
-
rubygems_version: 2.
|
313
|
+
rubygems_version: 2.7.2
|
314
314
|
signing_key:
|
315
315
|
specification_version: 4
|
316
316
|
summary: LinuxAdmin is a module to simplify management of linux systems.
|