From 2b4ae9bbb369e1774f942452a6a17a6d913f802e Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sat, 1 Nov 2025 10:30:38 +0100 Subject: [PATCH] some small doc updates --- docs/dev/release.md | 9 ++------- intelmq/bin/intelmqctl.py | 3 +++ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/dev/release.md b/docs/dev/release.md index fcd78590c..c12148a67 100644 --- a/docs/dev/release.md +++ b/docs/dev/release.md @@ -23,7 +23,7 @@ different. These apply to all projects: -- CHANGELOG.MD and NEWS.MD: Update the latest header, fix the order, remove empty sections and (re)group the entries if necessary. +- `CHANGELOG.MD` and `NEWS.MD`: Update the latest header, fix the order, remove empty sections and (re)group the entries if necessary. - debian/changelog: Insert a new section for the new version with the tool `dch` or update the version of the existing last item if yet unreleased. Don't forget the revision after the version number! ### IntelMQ @@ -68,12 +68,7 @@ rm -r build/ python3 setup.py sdist bdist_wheel ``` -* Upload the files including signatures to PyPI with e.g. twine: `twine upload -u __token__ -p $APITOKEN dist/intelmq...` (or set the API Token in `.pypirc`). - - -## Documentation - -Since using mkdocs (see https://docs.intelmq.org) nothing needs to be done anymore. +* Upload the files including signatures to PyPI with e.g. twine: `twine upload dist/intelmq...` (set the API Token in `~/.pypirc`). ## Packages diff --git a/intelmq/bin/intelmqctl.py b/intelmq/bin/intelmqctl.py index 75cbafc72..3ebefad3b 100644 --- a/intelmq/bin/intelmqctl.py +++ b/intelmq/bin/intelmqctl.py @@ -206,6 +206,9 @@ def __init__(self, interactive: bool = False, returntype: ReturnType = ReturnTyp Get some debugging output on the settings and the environment (to be extended): intelmqctl debug --get-paths intelmqctl debug --get-environment-variables + +Looking for help from the community? +Find IntelMQ's support channels at https://docs.intelmq.org/latest/help/ ''' self._processmanagertype = getattr(self._parameters, 'process_manager', 'intelmq')