Skip to content

Refork updates #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
image: python:${{ matrix.python-version }}
steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
run: |
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ syslog-ng-cfg-helper --context parser --driver csv-parser
```

### Example
[![Example](https://raw.githubusercontent.com/alltilla/syslog-ng-cfg-helper/assets/example.gif)](https://raw.githubusercontent.com/alltilla/syslog-ng-cfg-helper/assets/example.gif)
[![Example](https://raw.githubusercontent.com/syslog-ng/syslog-ng-cfg-helper/assets/example.gif)](https://raw.githubusercontent.com/syslog-ng/syslog-ng-cfg-helper/assets/example.gif)

## Development
The tool is still in development, but most of the drivers are supported.
Expand Down Expand Up @@ -55,7 +55,5 @@ The [Makefile](https://github.com/alltilla/syslog-ng-cfg-helper/blob/master/Make
* `make db SYSLOG_NG_SOURCE_DIR=/path/to/syslog-ng` creates a tarball from the state of the syslog-ng source dir and generates the option database.
* `make package` creates the pip package.

## Community
You can reach out to the syslog-ng community on Discord:

[![Axoflow Discord Server](https://discordapp.com/api/guilds/1082023686028148877/widget.png?style=banner2)](https://discord.gg/E65kP9aZGm)
# NOTE
This is a retro fork of [axosyslog-cfg-helper](https://github.com/alltilla/axosyslog-cfg-helper), as that no longer supports syslog-ng.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ description = "Configuration helper for syslog-ng."
authors = ["Attila Szakacs <szakacs.attila96@gmail.com>"]
readme = "README.md"
license = "GPL-3.0-only"
homepage = "https://github.com/alltilla/syslog-ng-cfg-helper"
repository = "https://github.com/alltilla/syslog-ng-cfg-helper"
homepage = "https://github.com/syslog-ng/syslog-ng-cfg-helper"
repository = "https://github.com/syslog-ng/syslog-ng-cfg-helper"
keywords = ["syslog-ng", "configuration", "cfg"]
classifiers = [
"Environment :: Console",
Expand Down
Loading