Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
aeber committed Oct 17, 2023
1 parent 5792f97 commit 1517fd5
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 8 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Ruby

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
Fluentd Filter Plugin to parse [linux's audit log](https://github.com/linux-audit/audit-documentation/wiki).

[![Gem Version](https://badge.fury.io/rb/fluent-plugin-filter-parse-audit-log.svg)](http://badge.fury.io/rb/fluent-plugin-filter-parse-audit-log)
[![Build Status](https://travis-ci.org/winebarrel/fluent-plugin-filter-parse-audit-log.svg?branch=master)](https://travis-ci.org/winebarrel/fluent-plugin-filter-parse-audit-log)

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'fluent-plugin-filter-audit-log'
gem 'fluent-plugin-filter-dgi-audit-log'
```

And then execute:
Expand All @@ -19,7 +18,7 @@ And then execute:

Or install it yourself as:

$ gem install fluent-plugin-filter-audit-log
$ gem install fluent-plugin-filter-dgi-audit-log

## Configuration

Expand Down Expand Up @@ -89,6 +88,6 @@ echo '{"message":"type=SYSCALL msg=audit(1364481363.243:24287): arch=c000003e sy

## Related Links

* https://github.com/winebarrel/audit_log_parser
* https://github.com/dg-i/audit_log_parser
* [7.6. Understanding Audit Log Files - Red Hat Customer Portal](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/sec-understanding_audit_log_files)
* [SPEC Writing Good Events · linux-audit/audit-documentation Wiki](https://github.com/linux-audit/audit-documentation/wiki/SPEC-Writing-Good-Events)
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fluent_plugin_filter_parse_audit_log/version'

Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-filter-parse-audit-log'
spec.name = 'fluent-plugin-filter-dgi-parse-audit-log'
spec.version = FluentPluginFilterParseAuditLog::VERSION
spec.authors = ['winebarrel']
spec.email = ['sugawara@winebarrel.jp']
spec.authors = ['winebarrel', 'aeber']
spec.email = ['']

spec.summary = %q{Fluentd Filter Plugin to parse linux's audit log.}
spec.description = %q{Fluentd Filter Plugin to parse linux's audit log.}
spec.homepage = 'https://github.com/winebarrel/fluent-plugin-filter-parse-audit-log'
spec.homepage = 'https://github.com/dg-i/fluent-plugin-filter-parse-audit-log'
spec.license = 'MIT'

# Specify which files should be added to the gem when it is released.
Expand Down

0 comments on commit 1517fd5

Please sign in to comment.