bmc: s/SystemdVerification/SystemdWithStatusFile/g
Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I5da0ca9e3ae53df957647b19446df4196248fd31
diff --git a/bmc/verify_systemd.cpp b/bmc/verify_systemd.cpp
index e3316a0..3851f94 100644
--- a/bmc/verify_systemd.cpp
+++ b/bmc/verify_systemd.cpp
@@ -28,16 +28,16 @@
{
std::unique_ptr<TriggerableActionInterface>
- SystemdVerification::CreateVerification(sdbusplus::bus::bus&& bus,
- const std::string& path,
- const std::string& service,
- const std::string& mode)
+ SystemdWithStatusFile::CreateVerification(sdbusplus::bus::bus&& bus,
+ const std::string& path,
+ const std::string& service,
+ const std::string& mode)
{
- return std::make_unique<SystemdVerification>(std::move(bus), path, service,
- mode);
+ return std::make_unique<SystemdWithStatusFile>(std::move(bus), path,
+ service, mode);
}
-bool SystemdVerification::trigger()
+bool SystemdWithStatusFile::trigger()
{
static constexpr auto systemdService = "org.freedesktop.systemd1";
static constexpr auto systemdRoot = "/org/freedesktop/systemd1";
@@ -63,12 +63,12 @@
return true;
}
-void SystemdVerification::abort()
+void SystemdWithStatusFile::abort()
{
/* TODO: Implement this. */
}
-ActionStatus SystemdVerification::status()
+ActionStatus SystemdWithStatusFile::status()
{
ActionStatus result = ActionStatus::unknown;
@@ -99,7 +99,7 @@
return result;
}
-const std::string SystemdVerification::getMode() const
+const std::string SystemdWithStatusFile::getMode() const
{
return mode;
}