blob: b89d8e5421d4ef781ce65d6f7ee681dbdb0be920 [file] [log] [blame]
Jagpal Singh Gill23f091e2023-12-10 15:23:19 -08001#pragma once
2
3#include <sdbusplus/bus.hpp>
4#include <sdbusplus/sdbus.hpp>
5
6#include <vector>
7
8namespace phosphor::health::utils
9{
10
11using paths_t = std::vector<std::string>;
12
13/** @brief Start a systemd unit */
14void startUnit(sdbusplus::bus_t& bus, const std::string& sysdUnit);
15
16} // namespace phosphor::health::utils