1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

SystemServer: Rename 'BootModes' config option to 'SystemModes'

This commit is contained in:
Ben Wiederhake 2021-10-23 19:15:01 +02:00 committed by Andreas Kling
parent 8d13f6ddce
commit 3d855a801b
5 changed files with 24 additions and 24 deletions

View file

@ -61,8 +61,8 @@ private:
String m_user;
// The working directory in which to spawn the service.
String m_working_directory;
// Boot modes to run this service in. By default, this is the graphical mode.
Vector<String> m_boot_modes;
// System modes in which to run this service. By default, this is the graphical mode.
Vector<String> m_system_modes;
// Whether several instances of this service can run at once.
bool m_multi_instance { false };
// Environment variables to pass to the service.