chiark / gitweb /
fanotify: use uint64_t instead of __u64
[elogind.git] / src / systemd-interfaces.vala
index 9a8c1dcdf3a04335e115b1a494288c798e96d0fb..b7229cea27455309ececd6ed79eaaefffcfadf20 100644 (file)
@@ -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")]