systemd-journal 1.4.2 → 2.0.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 +4 -4
- data/.github/workflows/ruby.yml +4 -1
- data/.gitignore +1 -0
- data/README.md +17 -20
- data/Rakefile +8 -1
- data/ext/shim/extconf.rb +10 -0
- data/ext/shim/shim.c +25 -0
- data/ext/shim/shim.h +6 -0
- data/lib/systemd/journal/native.rb +0 -9
- data/lib/systemd/journal/version.rb +1 -1
- data/lib/systemd/journal.rb +2 -1
- data/systemd-journal.gemspec +9 -14
- metadata +41 -50
- checksums.yaml.gz.sig +0 -2
- data/certs/john@throttle.io.pem +0 -25
- data.tar.gz.sig +0 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5c615cee8de41012105d99aec5b93f8c88f322b67bbf4d97bcb4afbd74cec35
|
4
|
+
data.tar.gz: 84447c503addd9fc6c3c6564472e7eb1558f6e6a184a98214c604feb2649ecea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd1375594a013f9d237c0a62f5c4aed77f80b54637e1275cf32565905fde72187eb08feefc4d93129a3a942949de93d2f037b0af2893e95f52c006d682e32b39
|
7
|
+
data.tar.gz: 9debfc4954cc65ddf9fda2d448c30b67c0995cf2ad554dcfb00b067103218a5898d8d9f619e6b04236d184742397d64b5365efbbd90cb0be6f26a25cbeb8887b
|
data/.github/workflows/ruby.yml
CHANGED
@@ -6,12 +6,15 @@ jobs:
|
|
6
6
|
fail-fast: false
|
7
7
|
matrix:
|
8
8
|
os: [ubuntu]
|
9
|
-
ruby: [
|
9
|
+
ruby: [3.0, 3.1, 3.2, 3.3]
|
10
10
|
runs-on: ${{ matrix.os }}-latest
|
11
11
|
steps:
|
12
12
|
- uses: actions/checkout@v2
|
13
13
|
- uses: ruby/setup-ruby@v1
|
14
14
|
with:
|
15
15
|
ruby-version: ${{ matrix.ruby }}
|
16
|
+
- run: sudo apt-get install libjemalloc2 --yes
|
16
17
|
- run: bundle install
|
18
|
+
- run: bundle exec rake compile
|
17
19
|
- run: bundle exec rake spec
|
20
|
+
- run: LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2 bundle exec rake spec
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -10,7 +10,7 @@ Ruby bindings for reading from the systemd journal.
|
|
10
10
|
Add this line to your application's Gemfile:
|
11
11
|
|
12
12
|
```ruby
|
13
|
-
gem 'systemd-journal', '~>
|
13
|
+
gem 'systemd-journal', '~> 2.0'
|
14
14
|
```
|
15
15
|
|
16
16
|
And then execute:
|
@@ -19,20 +19,6 @@ And then execute:
|
|
19
19
|
bundle install
|
20
20
|
```
|
21
21
|
|
22
|
-
If you have trust issues, fear not:
|
23
|
-
|
24
|
-
```sh
|
25
|
-
wget https://raw.githubusercontent.com/ledbettj/systemd-journal/master/certs/john@throttle.io.pem
|
26
|
-
gem cert --add john@throttle.io.pem
|
27
|
-
```
|
28
|
-
|
29
|
-
You can then verify the signature at install time with either `gem` or `bundler`:
|
30
|
-
|
31
|
-
```sh
|
32
|
-
gem install systemd-journal -P HighSecurity
|
33
|
-
bundle install --trust-policy HighSecurity
|
34
|
-
```
|
35
|
-
|
36
22
|
## Dependencies
|
37
23
|
|
38
24
|
Obviously you will need to have
|
@@ -159,17 +145,28 @@ necessary until v246 is released.
|
|
159
145
|
|
160
146
|
In ArchLinux, this patch is applied in systemd-libs 245.6-2.
|
161
147
|
|
148
|
+
### I don't get any output when reading from/into a container!
|
149
|
+
|
150
|
+
The most likely cause of this is a version mismatch between `libsystemd` on the
|
151
|
+
host and in the container, where the older version does not support features used
|
152
|
+
by the newer version. If you run `journalctl` you might see:
|
153
|
+
|
154
|
+
> Journal file ... uses an unsupported feature, ignoring file.
|
155
|
+
|
156
|
+
Sadly, this error case is not exposed via the `libsystemd` API so this gem does
|
157
|
+
not know when this happens. There are two potential workarounds:
|
158
|
+
|
159
|
+
* Ensure that the version of `libsystemd` are compatible across host/container
|
160
|
+
* Disable the features that are not supported by the older version to cause the
|
161
|
+
newer version to emit compatible journal files.
|
162
|
+
|
163
|
+
|
162
164
|
## Issues?
|
163
165
|
|
164
166
|
This gem has been tested primarily on MRI and Arch Linux running systemd version
|
165
167
|
208 and up. Please let me know if you have issues with other versions or
|
166
168
|
distributions.
|
167
169
|
|
168
|
-
The gem will run under JRuby, although some features which rely on native file
|
169
|
-
descriptor support will not work.
|
170
|
-
|
171
|
-
The gem will not run under truffleruby due to missing support for some FFI features.
|
172
|
-
|
173
170
|
If you run into problems or have questions, please open an
|
174
171
|
[Issue](https://github.com/ledbettj/systemd-journal/issues) or Pull Request.
|
175
172
|
|
data/Rakefile
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
2
|
require 'yard'
|
3
3
|
require 'rspec/core/rake_task'
|
4
|
+
require "rake/extensiontask"
|
4
5
|
|
5
6
|
unless ENV['RUBOCOP'] == 'false'
|
6
|
-
require 'rubocop/rake_task'
|
7
|
+
require 'rubocop/rake_task'
|
7
8
|
|
8
9
|
RuboCop::RakeTask.new(:rubocop) do |task|
|
9
10
|
task.patterns = ['lib/**/*.rb', 'spec/**/*.rb']
|
@@ -25,4 +26,10 @@ RSpec::Core::RakeTask.new(:spec) do |t|
|
|
25
26
|
t.rspec_opts = %w(--color)
|
26
27
|
end
|
27
28
|
|
29
|
+
GEMSPEC = Gem::Specification.load("systemd-journal.gemspec")
|
30
|
+
|
31
|
+
Rake::ExtensionTask.new("shim", GEMSPEC) do |ext|
|
32
|
+
ext.lib_dir = "lib/systemd/journal/"
|
33
|
+
end
|
34
|
+
|
28
35
|
task default: :spec
|
data/ext/shim/extconf.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "mkmf"
|
4
|
+
|
5
|
+
# Makes all symbols private by default to avoid unintended conflict
|
6
|
+
# with other gems. To explicitly export symbols you can use RUBY_FUNC_EXPORTED
|
7
|
+
# selectively, or entirely remove this flag.
|
8
|
+
append_cflags("-fvisibility=hidden")
|
9
|
+
|
10
|
+
create_makefile("systemd/journal/shim")
|
data/ext/shim/shim.c
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
#include "shim.h"
|
2
|
+
|
3
|
+
VALUE rb_mShim;
|
4
|
+
|
5
|
+
VALUE shim_free(VALUE self, VALUE ptr);
|
6
|
+
|
7
|
+
RUBY_FUNC_EXPORTED void
|
8
|
+
Init_shim(void)
|
9
|
+
{
|
10
|
+
VALUE mSystemd = rb_define_module("Systemd");
|
11
|
+
VALUE cJournal = rb_define_class_under(mSystemd, "Journal", rb_cObject);
|
12
|
+
rb_mShim = rb_define_module_under(cJournal, "Shim");
|
13
|
+
|
14
|
+
rb_define_module_function(rb_mShim, "free", shim_free, 1);
|
15
|
+
}
|
16
|
+
|
17
|
+
VALUE shim_free(VALUE self, VALUE ptr) {
|
18
|
+
VALUE rb_addr = rb_funcall(ptr, rb_intern("address"), 0);
|
19
|
+
void* addr = (void*)NUM2ULL(rb_addr);
|
20
|
+
if (addr) {
|
21
|
+
free(addr);
|
22
|
+
}
|
23
|
+
|
24
|
+
return Qnil;
|
25
|
+
}
|
data/ext/shim/shim.h
ADDED
@@ -86,13 +86,4 @@ module Systemd
|
|
86
86
|
attach_function :sd_journal_get_usage, [:pointer, :pointer], :int
|
87
87
|
end
|
88
88
|
end
|
89
|
-
|
90
|
-
# @private
|
91
|
-
module LibC
|
92
|
-
require 'ffi'
|
93
|
-
extend FFI::Library
|
94
|
-
ffi_lib FFI::Library::LIBC
|
95
|
-
|
96
|
-
attach_function :free, [:pointer], :void
|
97
|
-
end
|
98
89
|
end
|
data/lib/systemd/journal.rb
CHANGED
@@ -6,6 +6,7 @@ require 'systemd/journal/fields'
|
|
6
6
|
require 'systemd/journal/navigable'
|
7
7
|
require 'systemd/journal/filterable'
|
8
8
|
require 'systemd/journal/waitable'
|
9
|
+
require 'systemd/journal/shim'
|
9
10
|
require 'systemd/journal_error'
|
10
11
|
require 'systemd/journal_entry'
|
11
12
|
require 'systemd/id128'
|
@@ -322,7 +323,7 @@ module Systemd
|
|
322
323
|
# frees the char*, and returns the ruby string.
|
323
324
|
def self.read_and_free_outstr(ptr)
|
324
325
|
str = ptr.read_string
|
325
|
-
|
326
|
+
Shim.free(ptr)
|
326
327
|
str
|
327
328
|
end
|
328
329
|
end
|
data/systemd-journal.gemspec
CHANGED
@@ -8,31 +8,26 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = Systemd::Journal::VERSION
|
9
9
|
gem.license = 'MIT'
|
10
10
|
gem.authors = ['John Ledbetter', 'Daniel Mack']
|
11
|
-
gem.email = ['john@
|
11
|
+
gem.email = ['john@weirdhorse.party']
|
12
12
|
gem.description = 'Provides the ability to navigate and read entries from the systemd journal in ruby, as well as write events to the journal.'
|
13
13
|
gem.summary = 'Ruby bindings to libsystemd-journal'
|
14
14
|
gem.homepage = 'https://github.com/ledbettj/systemd-journal'
|
15
15
|
|
16
|
-
gem.cert_chain = Dir['certs/john@throttle.io.pem']
|
17
|
-
|
18
|
-
if $PROGRAM_NAME.end_with?('gem')
|
19
|
-
gem.signing_key = ENV['GEM_SIGNING_KEY']
|
20
|
-
raise ArgumentError, 'Please set GEM_SIGNING_KEY' if gem.signing_key.nil?
|
21
|
-
end
|
22
|
-
|
23
16
|
gem.files = `git ls-files`.split($/)
|
24
17
|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
25
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
26
19
|
gem.require_paths = ['lib']
|
20
|
+
gem.extensions = ["ext/shim/extconf.rb"]
|
27
21
|
|
28
|
-
gem.required_ruby_version = '>=
|
22
|
+
gem.required_ruby_version = '>= 3.0'
|
29
23
|
|
30
24
|
gem.add_runtime_dependency 'ffi', '~> 1.9'
|
31
25
|
|
32
|
-
gem.add_development_dependency '
|
33
|
-
gem.add_development_dependency '
|
34
|
-
gem.add_development_dependency '
|
35
|
-
gem.add_development_dependency '
|
26
|
+
gem.add_development_dependency 'pry', '~> 0.14'
|
27
|
+
gem.add_development_dependency 'rake', '~> 13.1'
|
28
|
+
gem.add_development_dependency 'rspec', '~> 3.13'
|
29
|
+
gem.add_development_dependency 'rubocop', '~> 1.61' unless ENV['RUBOCOP'] == 'false'
|
30
|
+
gem.add_development_dependency 'simplecov', '~> 0.22'
|
36
31
|
gem.add_development_dependency 'yard', '~> 0.9'
|
37
|
-
gem.add_development_dependency '
|
32
|
+
gem.add_development_dependency 'rake-compiler'
|
38
33
|
end
|
metadata
CHANGED
@@ -1,41 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: systemd-journal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Ledbetter
|
8
8
|
- Daniel Mack
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
|
-
cert_chain:
|
12
|
-
-
|
13
|
-
-----BEGIN CERTIFICATE-----
|
14
|
-
MIIEMDCCApigAwIBAgIBATANBgkqhkiG9w0BAQsFADAhMR8wHQYDVQQDDBZqb2hu
|
15
|
-
L0RDPXRocm90dGxlL0RDPWlvMB4XDTIwMDczMDIyMTUxNVoXDTIxMDczMDIyMTUx
|
16
|
-
NVowITEfMB0GA1UEAwwWam9obi9EQz10aHJvdHRsZS9EQz1pbzCCAaIwDQYJKoZI
|
17
|
-
hvcNAQEBBQADggGPADCCAYoCggGBAMEZjnWtA5/YsYEDvWlTAPOP2NshfBVcNSXE
|
18
|
-
FHg4refJstCaf59iqFEWbEjLmbezK6HA5vzM6ZenEom2S1Rzj0OButABHKaISjxE
|
19
|
-
wJG/DZ8fJTx+Yn970cIA7jH0r03/kpg8fzrCWjUH+Jy3vX8dkTa0I+fWz45k9o1g
|
20
|
-
e+ENGeIRklG7T8rNCmJP6oacGJUfdmXSHDszg0u1dCi4scth1vksDbZwyL/BPqGF
|
21
|
-
hLvIeAXwm1TPXKvD13odTRBgHj5h7w7YOBmcqGwq+rgEC+iRJhdS00x+mquD9Gdm
|
22
|
-
CjCvRnS7JG4UTpmUxsdY0snPCiHZjbjCKhZr+dciOOWLQE2NVuTeiyNg5di7XMq+
|
23
|
-
blIh6acnMZThiR8+bHAprJ1P+DtZ6uY0oePnRZ2K1pebGIOjA/UKaHlvbatyB49z
|
24
|
-
NdTvAWRWAQ2tSOpQhtR/3Pp6SYniT+/lnsW3H4bBsY14wEfPp8tkp7SdbyjoEeaz
|
25
|
-
ljX4Qi8q0ozKO22jbtwzE6F9V/EzzwIDAQABo3MwcTAJBgNVHRMEAjAAMAsGA1Ud
|
26
|
-
DwQEAwIEsDAdBgNVHQ4EFgQUVLZVCCB2lbddzYxAxk/g4bfBjhQwGwYDVR0RBBQw
|
27
|
-
EoEQam9obkB0aHJvdHRsZS5pbzAbBgNVHRIEFDASgRBqb2huQHRocm90dGxlLmlv
|
28
|
-
MA0GCSqGSIb3DQEBCwUAA4IBgQAxwbDSdDZjJQ4pKoV1Xf5kj9JKL1GvJ8jotTyx
|
29
|
-
Oy8BXUV+iiYXCelwfvBIsBtz64pH1VVg4/xrv2Vsi3It3IUdlbxUHi5Bn0X0W9ci
|
30
|
-
xkQYlszu4au+oz86MY/LMx83r9y+3GKy633JH5qmILotKHgzAcoFK5mASC9QyJWV
|
31
|
-
EK5FWtQGVJUelB4K3P93pxICfN5os04TCW4lAzLEwYwc+TVGDa1q1u8Wr7haId4o
|
32
|
-
fsQvapSzlO/jXwtepH363FhrdqYnXJ1acyCGBtaHzOcRUTmgRtTwNoMQICwNzeJ+
|
33
|
-
VvAOtMDRJT68kz5nD1G6AyriHzLptEt2/+Oq/DmAY3E2q+qN7Rb3THDBDFV7u3Cw
|
34
|
-
aNcGx7j1YvV5morU/wytvIA1XvjZlp27MBu0dd4kL8k7SRApTxnRjavsDrz1Oxa6
|
35
|
-
BTJGZ4qddTGCNj/QRwzZegXpckYB3u60wiU6EECWndotUYuKbgObSDU4Nh1cdrzw
|
36
|
-
FIew3kKXPiBpZBN3eDxal56e+R0=
|
37
|
-
-----END CERTIFICATE-----
|
38
|
-
date: 2020-07-30 00:00:00.000000000 Z
|
11
|
+
cert_chain: []
|
12
|
+
date: 2024-09-11 00:00:00.000000000 Z
|
39
13
|
dependencies:
|
40
14
|
- !ruby/object:Gem::Dependency
|
41
15
|
name: ffi
|
@@ -52,61 +26,75 @@ dependencies:
|
|
52
26
|
- !ruby/object:Gem::Version
|
53
27
|
version: '1.9'
|
54
28
|
- !ruby/object:Gem::Dependency
|
55
|
-
name:
|
29
|
+
name: pry
|
56
30
|
requirement: !ruby/object:Gem::Requirement
|
57
31
|
requirements:
|
58
32
|
- - "~>"
|
59
33
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
34
|
+
version: '0.14'
|
61
35
|
type: :development
|
62
36
|
prerelease: false
|
63
37
|
version_requirements: !ruby/object:Gem::Requirement
|
64
38
|
requirements:
|
65
39
|
- - "~>"
|
66
40
|
- !ruby/object:Gem::Version
|
67
|
-
version: '
|
41
|
+
version: '0.14'
|
68
42
|
- !ruby/object:Gem::Dependency
|
69
|
-
name:
|
43
|
+
name: rake
|
70
44
|
requirement: !ruby/object:Gem::Requirement
|
71
45
|
requirements:
|
72
46
|
- - "~>"
|
73
47
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
48
|
+
version: '13.1'
|
75
49
|
type: :development
|
76
50
|
prerelease: false
|
77
51
|
version_requirements: !ruby/object:Gem::Requirement
|
78
52
|
requirements:
|
79
53
|
- - "~>"
|
80
54
|
- !ruby/object:Gem::Version
|
81
|
-
version: '
|
55
|
+
version: '13.1'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.13'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.13'
|
82
70
|
- !ruby/object:Gem::Dependency
|
83
71
|
name: rubocop
|
84
72
|
requirement: !ruby/object:Gem::Requirement
|
85
73
|
requirements:
|
86
74
|
- - "~>"
|
87
75
|
- !ruby/object:Gem::Version
|
88
|
-
version: '
|
76
|
+
version: '1.61'
|
89
77
|
type: :development
|
90
78
|
prerelease: false
|
91
79
|
version_requirements: !ruby/object:Gem::Requirement
|
92
80
|
requirements:
|
93
81
|
- - "~>"
|
94
82
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
83
|
+
version: '1.61'
|
96
84
|
- !ruby/object:Gem::Dependency
|
97
|
-
name:
|
85
|
+
name: simplecov
|
98
86
|
requirement: !ruby/object:Gem::Requirement
|
99
87
|
requirements:
|
100
88
|
- - "~>"
|
101
89
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
90
|
+
version: '0.22'
|
103
91
|
type: :development
|
104
92
|
prerelease: false
|
105
93
|
version_requirements: !ruby/object:Gem::Requirement
|
106
94
|
requirements:
|
107
95
|
- - "~>"
|
108
96
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
97
|
+
version: '0.22'
|
110
98
|
- !ruby/object:Gem::Dependency
|
111
99
|
name: yard
|
112
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,25 +110,26 @@ dependencies:
|
|
122
110
|
- !ruby/object:Gem::Version
|
123
111
|
version: '0.9'
|
124
112
|
- !ruby/object:Gem::Dependency
|
125
|
-
name:
|
113
|
+
name: rake-compiler
|
126
114
|
requirement: !ruby/object:Gem::Requirement
|
127
115
|
requirements:
|
128
|
-
- - "
|
116
|
+
- - ">="
|
129
117
|
- !ruby/object:Gem::Version
|
130
|
-
version: '0
|
118
|
+
version: '0'
|
131
119
|
type: :development
|
132
120
|
prerelease: false
|
133
121
|
version_requirements: !ruby/object:Gem::Requirement
|
134
122
|
requirements:
|
135
|
-
- - "
|
123
|
+
- - ">="
|
136
124
|
- !ruby/object:Gem::Version
|
137
|
-
version: '0
|
125
|
+
version: '0'
|
138
126
|
description: Provides the ability to navigate and read entries from the systemd journal
|
139
127
|
in ruby, as well as write events to the journal.
|
140
128
|
email:
|
141
|
-
- john@
|
129
|
+
- john@weirdhorse.party
|
142
130
|
executables: []
|
143
|
-
extensions:
|
131
|
+
extensions:
|
132
|
+
- ext/shim/extconf.rb
|
144
133
|
extra_rdoc_files: []
|
145
134
|
files:
|
146
135
|
- ".github/workflows/ruby.yml"
|
@@ -151,9 +140,11 @@ files:
|
|
151
140
|
- LICENSE.txt
|
152
141
|
- README.md
|
153
142
|
- Rakefile
|
154
|
-
- certs/john@throttle.io.pem
|
155
143
|
- examples/journal_directory.rb
|
156
144
|
- examples/ssh_watcher.rb
|
145
|
+
- ext/shim/extconf.rb
|
146
|
+
- ext/shim/shim.c
|
147
|
+
- ext/shim/shim.h
|
157
148
|
- lib/systemd-journal.rb
|
158
149
|
- lib/systemd.rb
|
159
150
|
- lib/systemd/ffi_size_t.rb
|
@@ -189,14 +180,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
180
|
requirements:
|
190
181
|
- - ">="
|
191
182
|
- !ruby/object:Gem::Version
|
192
|
-
version:
|
183
|
+
version: '3.0'
|
193
184
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
194
185
|
requirements:
|
195
186
|
- - ">="
|
196
187
|
- !ruby/object:Gem::Version
|
197
188
|
version: '0'
|
198
189
|
requirements: []
|
199
|
-
rubygems_version: 3.
|
190
|
+
rubygems_version: 3.5.18
|
200
191
|
signing_key:
|
201
192
|
specification_version: 4
|
202
193
|
summary: Ruby bindings to libsystemd-journal
|
checksums.yaml.gz.sig
DELETED
data/certs/john@throttle.io.pem
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
2
|
-
MIIEMDCCApigAwIBAgIBATANBgkqhkiG9w0BAQsFADAhMR8wHQYDVQQDDBZqb2hu
|
3
|
-
L0RDPXRocm90dGxlL0RDPWlvMB4XDTIwMDczMDIyMTUxNVoXDTIxMDczMDIyMTUx
|
4
|
-
NVowITEfMB0GA1UEAwwWam9obi9EQz10aHJvdHRsZS9EQz1pbzCCAaIwDQYJKoZI
|
5
|
-
hvcNAQEBBQADggGPADCCAYoCggGBAMEZjnWtA5/YsYEDvWlTAPOP2NshfBVcNSXE
|
6
|
-
FHg4refJstCaf59iqFEWbEjLmbezK6HA5vzM6ZenEom2S1Rzj0OButABHKaISjxE
|
7
|
-
wJG/DZ8fJTx+Yn970cIA7jH0r03/kpg8fzrCWjUH+Jy3vX8dkTa0I+fWz45k9o1g
|
8
|
-
e+ENGeIRklG7T8rNCmJP6oacGJUfdmXSHDszg0u1dCi4scth1vksDbZwyL/BPqGF
|
9
|
-
hLvIeAXwm1TPXKvD13odTRBgHj5h7w7YOBmcqGwq+rgEC+iRJhdS00x+mquD9Gdm
|
10
|
-
CjCvRnS7JG4UTpmUxsdY0snPCiHZjbjCKhZr+dciOOWLQE2NVuTeiyNg5di7XMq+
|
11
|
-
blIh6acnMZThiR8+bHAprJ1P+DtZ6uY0oePnRZ2K1pebGIOjA/UKaHlvbatyB49z
|
12
|
-
NdTvAWRWAQ2tSOpQhtR/3Pp6SYniT+/lnsW3H4bBsY14wEfPp8tkp7SdbyjoEeaz
|
13
|
-
ljX4Qi8q0ozKO22jbtwzE6F9V/EzzwIDAQABo3MwcTAJBgNVHRMEAjAAMAsGA1Ud
|
14
|
-
DwQEAwIEsDAdBgNVHQ4EFgQUVLZVCCB2lbddzYxAxk/g4bfBjhQwGwYDVR0RBBQw
|
15
|
-
EoEQam9obkB0aHJvdHRsZS5pbzAbBgNVHRIEFDASgRBqb2huQHRocm90dGxlLmlv
|
16
|
-
MA0GCSqGSIb3DQEBCwUAA4IBgQAxwbDSdDZjJQ4pKoV1Xf5kj9JKL1GvJ8jotTyx
|
17
|
-
Oy8BXUV+iiYXCelwfvBIsBtz64pH1VVg4/xrv2Vsi3It3IUdlbxUHi5Bn0X0W9ci
|
18
|
-
xkQYlszu4au+oz86MY/LMx83r9y+3GKy633JH5qmILotKHgzAcoFK5mASC9QyJWV
|
19
|
-
EK5FWtQGVJUelB4K3P93pxICfN5os04TCW4lAzLEwYwc+TVGDa1q1u8Wr7haId4o
|
20
|
-
fsQvapSzlO/jXwtepH363FhrdqYnXJ1acyCGBtaHzOcRUTmgRtTwNoMQICwNzeJ+
|
21
|
-
VvAOtMDRJT68kz5nD1G6AyriHzLptEt2/+Oq/DmAY3E2q+qN7Rb3THDBDFV7u3Cw
|
22
|
-
aNcGx7j1YvV5morU/wytvIA1XvjZlp27MBu0dd4kL8k7SRApTxnRjavsDrz1Oxa6
|
23
|
-
BTJGZ4qddTGCNj/QRwzZegXpckYB3u60wiU6EECWndotUYuKbgObSDU4Nh1cdrzw
|
24
|
-
FIew3kKXPiBpZBN3eDxal56e+R0=
|
25
|
-
-----END CERTIFICATE-----
|
data.tar.gz.sig
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
#��6�fq�Z*�/,��T\\%���`���P�R]Ż������H�il=��n,Fxy�����Qs��#��F�0*���xn��ׂ�
|
metadata.gz.sig
DELETED
Binary file
|