Clone this repo:

Branches

  1. 6e04636 markdownlint: minor fixes by Patrick Williams · 6 days ago master
  2. c828db7 Boost 1.87 take 2 by Ed Tanous · 3 months ago
  3. 25c93aa Add SSIF in service config manager by leonhuang · 3 months ago
  4. 543e072 Fix build issues with boost 1.87 by Jason M. Bills · 4 months ago
  5. aaca057 obmc-ikvm: rename service file to align with repo name by Mohammed Javith Akthar M · 12 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.