From e99395a5659960e6aecf919c7b4115437396a7dd Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 23 Oct 2023 17:55:13 +0200 Subject: [PATCH] Development, remove monitor event from the list as discussed with @fichtner --- source/development/backend/legacy.rst | 2 +- source/development/backend/overview.rst | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/source/development/backend/legacy.rst b/source/development/backend/legacy.rst index 244004fa..997fcd4c 100644 --- a/source/development/backend/legacy.rst +++ b/source/development/backend/legacy.rst @@ -100,7 +100,6 @@ bootup Bootup, normal legacy service configuration, when n (for example: unbound, ntpd) newwanip Triggered after configuration of a new interface address, expects a maximum of two positional parameters (:code:`$verbose` and :code:`$interface`). -monitor Executed when there are changes that involve (dpinger) gateway monitoring. =========================== ================================================================================= @@ -111,6 +110,7 @@ monitor Executed when there are changes that involve (dping pluginctl -c monitor + ------------------ Firewall ------------------ diff --git a/source/development/backend/overview.rst b/source/development/backend/overview.rst index d7aa02d2..61dcfd86 100644 --- a/source/development/backend/overview.rst +++ b/source/development/backend/overview.rst @@ -20,11 +20,10 @@ in sequence: our end to make sure :code:`tun` and :code:`tap` devices exist before doing further configuration. 3. :doc:`plugins/configure/early `, configure :code:`early` event in bootup process, before normal services are being started (things like ssh and the webconfigurator use this spot) 4. :doc:`plugins/firewall ` allows for automatic firewall (nat) rule registration in cases where the service is able to ship its own rules. (some do this optionally for easy setup) -5. :doc:`plugins/configure/monitor `, configure :code:`monitor` event, with the network stack ready, signal the monitor (dpinger) for startup -6. :doc:`plugins/configure/vpn `, configure :code:`vpn` event, vpn type services are being configured here (e.g. IPsec, OpenVPN) -7. :doc:`plugins/configure/bootup `, configure :code:`bootup` event, normal legacy service configuration, when not using the rc(8) system (for example: unbound, ntpd) -8. :doc:`syshook/start `, simple shell scripts to run after all networking has been setup. -9. :doc:`rc(8) `, regular `rc(8)` scripts (executed using the above :code:`the rc.syshook.d/start``) +5. :doc:`plugins/configure/vpn `, configure :code:`vpn` event, vpn type services are being configured here (e.g. IPsec, OpenVPN) +6. :doc:`plugins/configure/bootup `, configure :code:`bootup` event, normal legacy service configuration, when not using the rc(8) system (for example: unbound, ntpd) +7. :doc:`syshook/start `, simple shell scripts to run after all networking has been setup. +8. :doc:`rc(8) `, regular `rc(8)` scripts (executed using the above :code:`the rc.syshook.d/start``) .. Tip::