OWNERS: add geissonator as maintainer

The service-config-manager repository has mostly been in maintenance
mode and there has been a bit of a struggle getting general
maintenance commits through.

I plan on doing some work within this repository and have been reviewing
it for a while now. I would be happy to assist with review and merges in
this repository.

Change-Id: I417984a8adccc377ee77433654ac1ced8642e676
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
1 file changed
tree: cfa74e8371ee41fe5fdfaaf23d66725cd2dbfe2b
  1. inc/
  2. src/
  3. subprojects/
  4. .clang-format
  5. .gitignore
  6. LICENSE
  7. meson.build
  8. meson.options
  9. OWNERS
  10. README.md
  11. srvcfg-manager.service
README.md

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.