summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
Diffstat (limited to 'Base')
-rw-r--r--Base/etc/SystemServer.ini24
-rw-r--r--Base/usr/share/man/man5/SystemServer.md4
2 files changed, 14 insertions, 14 deletions
diff --git a/Base/etc/SystemServer.ini b/Base/etc/SystemServer.ini
index 76d55e4234..9a36c684f5 100644
--- a/Base/etc/SystemServer.ini
+++ b/Base/etc/SystemServer.ini
@@ -9,7 +9,7 @@ SocketPermissions=600
Lazy=1
Priority=low
User=anon
-BootModes=text,graphical,self-test
+SystemModes=text,graphical,self-test
MultiInstance=1
AcceptSocketConnections=1
@@ -19,7 +19,7 @@ SocketPermissions=660
Lazy=1
Priority=low
User=anon
-BootModes=text,graphical,self-test
+SystemModes=text,graphical,self-test
MultiInstance=1
AcceptSocketConnections=1
@@ -28,7 +28,7 @@ Socket=/tmp/portal/webcontent
SocketPermissions=600
Lazy=1
User=anon
-BootModes=graphical
+SystemModes=graphical
MultiInstance=1
AcceptSocketConnections=1
@@ -37,7 +37,7 @@ Socket=/tmp/portal/image
SocketPermissions=600
Lazy=1
User=anon
-BootModes=graphical
+SystemModes=graphical
MultiInstance=1
AcceptSocketConnections=1
@@ -47,7 +47,7 @@ SocketPermissions=600
Lazy=1
Priority=low
User=anon
-BootModes=text,graphical,self-test
+SystemModes=text,graphical,self-test
MultiInstance=1
AcceptSocketConnections=1
@@ -57,13 +57,13 @@ SocketPermissions=660
Priority=low
KeepAlive=1
User=lookup
-BootModes=text,graphical,self-test
+SystemModes=text,graphical,self-test
[DHCPClient]
Priority=low
KeepAlive=1
User=root
-BootModes=text,graphical,self-test
+SystemModes=text,graphical,self-test
[NotificationServer]
Socket=/tmp/portal/notify
@@ -78,7 +78,7 @@ Socket=/tmp/portal/launch
SocketPermissions=600
Lazy=1
User=anon
-BootModes=text,graphical
+SystemModes=text,graphical
[WindowServer]
Socket=/tmp/portal/window,/tmp/portal/wm
@@ -105,21 +105,21 @@ Socket=/tmp/portal/audio
Priority=high
KeepAlive=1
User=anon
-BootModes=text,graphical
+SystemModes=text,graphical
[Shell@tty0]
Executable=/bin/Shell
StdIO=/dev/tty0
Environment=TERM=xterm
KeepAlive=1
-BootModes=text
+SystemModes=text
[Shell@tty1]
Executable=/bin/Shell
StdIO=/dev/tty1
Environment=TERM=xterm
KeepAlive=1
-BootModes=text
+SystemModes=text
[CppLanguageServer]
Socket=/tmp/portal/language/cpp
@@ -158,7 +158,7 @@ StdIO=/dev/ttyS0
Environment=DO_SHUTDOWN_AFTER_TESTS=1 TERM=xterm PATH=/bin:/usr/bin:/usr/local/bin TESTS_ONLY=1 UBSAN_OPTIONS=halt_on_error=1
User=anon
WorkingDirectory=/home/anon
-BootModes=self-test
+SystemModes=self-test
[SpiceAgent]
KeepAlive=0
diff --git a/Base/usr/share/man/man5/SystemServer.md b/Base/usr/share/man/man5/SystemServer.md
index 558b0de023..a00a49d475 100644
--- a/Base/usr/share/man/man5/SystemServer.md
+++ b/Base/usr/share/man/man5/SystemServer.md
@@ -28,7 +28,7 @@ describing how to launch and manage this service.
* `SocketPermissions` - comma-separated list of (octal) file system permissions for the socket file. The default permissions are 0600. If the number of socket permissions defined is less than the number of sockets defined, then the last defined permission will be used for the remainder of the items in `Socket`.
* `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.
* `WorkingDirectory` - the working directory in which the service is spawned. By default, services are spawned in the root (`"/"`) directory.
-* `BootModes` - a comma-separated list of boot modes the service should be enabled in. By default, services are only enabled in the "graphical" mode. The current system mode is read from the [kernel command line](../man7/boot_parameters.md#options), and is assumed to be "graphical" if not specified there.
+* `SystemModes` - a comma-separated list of system modes in which the service should be enabled. By default, services are only enabled in the "graphical" mode. The current system mode is read from the [kernel command line](../man7/boot_parameters.md#options), and is assumed to be "graphical" if not specified there.
* `Environment` - a space-separated list of "variable=value" pairs to set in the environment for the service.
* `MultiInstance` - whether multiple instances of the service can be running simultaneously.
* `AcceptSocketConnections` - whether SystemServer should accept connections on the socket, and spawn an instance of the service for each client connection.
@@ -76,7 +76,7 @@ Executable=/bin/Shell
StdIO=/dev/tty0
Environment=TERM=xterm
KeepAlive=1
-BootModes=text
+SystemModes=text
# Launch WindowManager with two sockets: one for main windowing operations, and
# one for window management operations. Both sockets get file permissions as 660.