Clone this repo:

Branches

  1. b281113 clang-format: re-format for clang-19 by Patrick Williams · 3 days ago master
  2. b5aabea boost version 1.86 support by Jayanth Othayoth · 6 weeks ago
  3. 1bfadda meson: switch code dependency to libsystemd by Patrick Williams · 4 months ago
  4. bace99e OWNERS: add geissonator as maintainer by Andrew Geissler · 3 months ago
  5. de87972 clang-format: re-format for clang-18 by Patrick Williams · 4 months ago

Service config manager

The service config manager provides a D-Bus interface to manage BMC services as described by the service management D-Bus interfaces.

The configuration settings are intended to persist across BMC reboots.

An example use case for this service is BMCWeb's implementation of the Redfish NetworkProtocol schema.

Design

Implementation details are described in the D-Bus interface README.

The service config manager generally makes configuration changes to systemd units via D-Bus interfaces.

The design pattern to add new services or controls is:

  • Determine if the service you want to control is socket activated.
  • To control the Running and Enabled properties of a service:
    • For a service which uses socket activation, control the socket.
    • For other services, control the service unit itself.