summaryrefslogtreecommitdiff
path: root/src/systemd-interfaces.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemd-interfaces.vala')
-rw-r--r--src/systemd-interfaces.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemd-interfaces.vala b/src/systemd-interfaces.vala
index 9a8c1dcdf3..b7229cea27 100644
--- a/src/systemd-interfaces.vala
+++ b/src/systemd-interfaces.vala
@@ -62,7 +62,7 @@ public interface Manager : DBus.Object {
public abstract ObjectPath reload_or_restart_unit(string name, string mode = "replace") throws DBus.Error;
public abstract ObjectPath reload_or_try_restart_unit(string name, string mode = "replace") throws DBus.Error;
- public abstract void reset_maintenance_unit(string name = "") throws DBus.Error;
+ public abstract void reset_failed_unit(string name = "") throws DBus.Error;
public abstract void clear_jobs() throws DBus.Error;
@@ -140,7 +140,7 @@ public interface Unit : DBus.Object {
public abstract ObjectPath reload_or_restart(string mode = "replace") throws DBus.Error;
public abstract ObjectPath reload_or_try_restart(string mode = "replace") throws DBus.Error;
- public abstract void reset_maintenance() throws DBus.Error;
+ public abstract void reset_failed() throws DBus.Error;
}
[DBus (name = "org.freedesktop.systemd1.Job")]