From ae0726ca490b93c9a173e6fe6ad4bd004048ec72 Mon Sep 17 00:00:00 2001 From: PS Date: Sat, 7 Feb 2026 10:36:23 +0100 Subject: Add doc --- doc/source/system/other/local.html | 69 ++++++++++++++++++++++++++++++++ doc/source/system/other/syslog-priv.html | 39 ++++++++++++++++++ doc/source/system/other/syslog.html | 39 ++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 doc/source/system/other/local.html create mode 100644 doc/source/system/other/syslog-priv.html create mode 100644 doc/source/system/other/syslog.html (limited to 'doc/source') diff --git a/doc/source/system/other/local.html b/doc/source/system/other/local.html new file mode 100644 index 0000000..29c25e5 --- /dev/null +++ b/doc/source/system/other/local.html @@ -0,0 +1,69 @@ + + + + + + + local service + + + +
+

+ goetia-freebsd +
+ goetia +
+ Software +
+ 0x53.net +

+
+ +

The local service

+

+ local is a + oneshot service. +

+ +

+ The files are executed in random order + and in parallel. +

+
+

Examples

+

+ An executable file /etc/local.d/echo.up + with the content +

+#!/bin/execlineb -P
+
+echo "example"
+        		
+ would be executed and write "example" to the system log + upon starting the service local. +

+

+ An executable file /etc/local.d/echo.down + with the content +

+#!/bin/execlineb -P
+
+echo "example"
+        		
+ would be executed and write "example" to the system log + upon stopping the service local. +

+
+ + diff --git a/doc/source/system/other/syslog-priv.html b/doc/source/system/other/syslog-priv.html new file mode 100644 index 0000000..f73df27 --- /dev/null +++ b/doc/source/system/other/syslog-priv.html @@ -0,0 +1,39 @@ + + + + + + + syslog-priv service + + + +
+

+ goetia-freebsd +
+ goetia +
+ Software +
+ 0x53.net +

+
+ +

The syslog-priv service

+

+ syslog-priv is a + longrun service + to support legacy applications + that only support logging through a syslog socket. +

+

+ It runs an instance of + s6-socklog + with the socket set to /var/run/logpriv. + The logs are then processed by + s6-log + (see logging directory). +

+ + diff --git a/doc/source/system/other/syslog.html b/doc/source/system/other/syslog.html new file mode 100644 index 0000000..14be6c3 --- /dev/null +++ b/doc/source/system/other/syslog.html @@ -0,0 +1,39 @@ + + + + + + + syslog service + + + +
+

+ goetia-freebsd +
+ goetia +
+ Software +
+ 0x53.net +

+
+ +

The syslog service

+

+ syslog is a + longrun service + to support legacy applications + that only support logging through a syslog socket. +

+

+ It runs an instance of + s6-socklog + with the socket set to /var/run/log. + The logs are then processed by + s6-log + (see logging directory). +

+ + -- cgit v1.2.3