summaryrefslogtreecommitdiff
path: root/Base/usr
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-09 21:35:33 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-09 21:35:33 +0100
commit7dd03b46ee8d134eb60c773700c3a558e757cd9a (patch)
treedde6cec9b209ec44c054bc5409bb18abad89de74 /Base/usr
parentf3dad64a3b31667f4e9ea98f838a1bd934616164 (diff)
downloadserenity-7dd03b46ee8d134eb60c773700c3a558e757cd9a.zip
SystemServer: Allow specifying per-service socket file permissions
Diffstat (limited to 'Base/usr')
-rw-r--r--Base/usr/share/man/man5/SystemServer.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/usr/share/man/man5/SystemServer.md b/Base/usr/share/man/man5/SystemServer.md
index 9e00d07af5..024ce1bdc1 100644
--- a/Base/usr/share/man/man5/SystemServer.md
+++ b/Base/usr/share/man/man5/SystemServer.md
@@ -23,6 +23,7 @@ describing how to launch and manage this service.
* `KeepAlive` - whether the service should be restarted if it exits or crashes. For lazy services, this means the service will get respawned once a new connection is attempted on their socket after they exit or crash.
* `Lazy` - whether the service should only get spawned once a client attempts to connect to their socket.
* `Socket` - a path to a socket to create on behalf of the service. For lazy services, SystemServer will actually watch the socket for new connection attempts. An open file descriptor to this socket will be passed as fd 3 to the service.
+* `SocketPermissions` - (octal) file system permissions for the socket file. The default permissions are 0600.
* `User` - a name of the user to run the service as. This impacts what UID, GID (and extra GIDs) the service processes have. By default, services are run as root.
## Environment