foreman_cockpit 2.0.1 → 2.0.2

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
  SHA1:
3
- metadata.gz: 5866c005bbf9e11fa1b284895376fd75815cd01b
4
- data.tar.gz: 8d8ee2b3aaff6630423775a232f0fa6d4399268c
3
+ metadata.gz: 7fdaf362cfb67b4ce1ed4b009e78bc1dab6e71ba
4
+ data.tar.gz: b8091282c44018675e15269f5c3498815ec29540
5
5
  SHA512:
6
- metadata.gz: cbb4494be80769a9d1ea5cd65947b061ccc2c04b1f47d3a1a971af8d1f9fe41b0036af901c14310801413d94894edb0a87b4d4fec45b9ba48246865be61e58c8
7
- data.tar.gz: acacd39e7ea3214ca2af5a35e496b2553c43afb961a84e86497e324a1d925e2e5c40c005740d302fa7a146381419159b04946fcf9508eec93c0818f090d1a9a8
6
+ metadata.gz: 104cee72dfc7774ae2175ab476bedef07d63a5ad4b0a32ea3b012581e99879c19030d82ada67df635c2f1d372057517147cdedba141671b8fc226bdae34f9b72
7
+ data.tar.gz: 950e0c39b6a6544cc39ad11af2f36896aa10bcd212747c2876b084e1e3ae63f73b02318a45450320862634209c2727333ebe301b7b98b05e35ebdf32dd10cd62
@@ -22,7 +22,7 @@ module ForemanCockpit
22
22
  'cockpit' == JSON.parse(RestClient.get(cockpit_ping_url))['service']
23
23
  end
24
24
  rescue Timeout::Error, SocketError, Errno::ECONNREFUSED,
25
- Errno::EHOSTUNREACH => e
25
+ Errno::EHOSTUNREACH, Errno::ECONNRESET => e
26
26
  logger.warn "Tried to contact Cockpit for host #{name} but failed: #{e}"
27
27
  logger.debug e.backtrace.join("\n")
28
28
  false
@@ -19,7 +19,7 @@ module ForemanCockpit
19
19
  end
20
20
 
21
21
  initializer('foreman_cockpit.register_plugin',
22
- :after => :finisher_hook) do
22
+ :before => :finisher_hook) do
23
23
  Foreman::Plugin.register :foreman_cockpit do
24
24
  requires_foreman '>= 1.7'
25
25
  end
@@ -1,4 +1,4 @@
1
1
  # Specify the version to be picked up in the Gemspec
2
2
  module ForemanCockpit
3
- VERSION = '2.0.1'
3
+ VERSION = '2.0.2'
4
4
  end
@@ -1,19 +1,29 @@
1
- # foreman_cockpit
2
- #
3
- # This file is distributed under the same license as foreman_cockpit.
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_cockpit package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
5
  #
5
6
  #, fuzzy
6
7
  msgid ""
7
8
  msgstr ""
8
- "Project-Id-Version: version 0.0.1\n"
9
+ "Project-Id-Version: foreman_cockpit 1.0.0\n"
9
10
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-20 08:46+0100\n"
11
- "PO-Revision-Date: 2014-08-20 08:46+0100\n"
12
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
13
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "POT-Creation-Date: 2016-04-22 14:43-0400\n"
12
+ "PO-Revision-Date: 2016-04-22 14:43-0400\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
15
  "Language: \n"
15
16
  "MIME-Version: 1.0\n"
16
17
  "Content-Type: text/plain; charset=UTF-8\n"
17
18
  "Content-Transfer-Encoding: 8bit\n"
18
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
20
 
21
+ #: ../app/helpers/concerns/foreman_cockpit/hosts_helper_extensions.rb:23
22
+ msgid "Cockpit"
23
+ msgstr ""
24
+
25
+ #: gemspec.rb:2
26
+ msgid ""
27
+ "This plugin adds a tab to see your host's Cockpit components, such as console,"
28
+ " journal, and networking if the host has Cockpit installed."
29
+ msgstr ""
data/locale/gemspec.rb CHANGED
@@ -1,2 +1,4 @@
1
1
  # Matches foreman_cockpit.gemspec
2
- _('TODO: Description of ForemanCockpit.')
2
+ _("This plugin adds a tab to see your host's Cockpit components, " +
3
+ "such as console, journal, and networking if the host has Cockpit installed.")
4
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_cockpit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Lobato Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-11 00:00:00.000000000 Z
11
+ date: 2016-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deface
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: '0'
41
41
  description: |
42
42
  This plugin adds a tab to see your host's Cockpit components, such as console,
43
- journal, networking.. if the host has Cockpit installed.
43
+ journal, and networking if the host has Cockpit installed.
44
44
  email:
45
45
  - me@daniellobato.me
46
46
  executables: []