summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsebres <info@sebres.de>2021-09-20 04:07:55 +0200
committersebres <serg.brester@sebres.de>2021-11-03 15:41:40 +0100
commit96661f25ab558b92b42d01c87d383664e69dd18b (patch)
tree9deb0a09b137c2fd06d77fa2f8b6d159c63d194e /.github
parent7678f5982733f1d20bbec8d04006ac78cded10db (diff)
downloadfail2ban-96661f25ab558b92b42d01c87d383664e69dd18b.tar.gz
filtersystemd.py: fixes wrong time point of "in operation" mode
todo: need more tests to cover any step of switch to inOperationMode (all branches)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c60ab05c..e346635d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -33,7 +33,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
-
+
+ - name: Grant systemd-journal access
+ run: sudo usermod -a -G systemd-journal "$USER" || echo 'no systemd-journal access'
+
- name: Python version
run: |
F2B_PY=$(python -c "import sys; print(sys.version)")