Clone this repo:

Branches

  1. d8effd6 clang-format: copy latest and re-format by Patrick Williams · 5 months ago master
  2. c241bde meson: Replace configure_file with fs.copyfile by George Liu · 8 months ago
  3. 9d68077 Remove Richard by Jason M. Bills · 8 months ago
  4. 0ad0462 meson_options.txt: Support for reading options from meson.options by George Liu · 8 months ago
  5. 70c78fe build: upgrade to C++23 by Patrick Williams · 9 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.