X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=systemd-interfaces.vala;h=72655d63505674059298886df470266f0209444d;hb=5301be81d094129232becb2a087f8db4967d1fc6;hp=3b65d3c90b3f2ecd0e352c7e20f444fccfcf6bff;hpb=4139c1b2729f88991159b9affa2ebf3e4eb904a0;p=elogind.git diff --git a/systemd-interfaces.vala b/systemd-interfaces.vala index 3b65d3c90..72655d635 100644 --- a/systemd-interfaces.vala +++ b/systemd-interfaces.vala @@ -43,6 +43,8 @@ public interface Manager : DBus.Object { ObjectPath unit_path; } + public abstract string[] environment { owned get; } + public abstract UnitInfo[] list_units() throws DBus.Error; public abstract JobInfo[] list_jobs() throws DBus.Error; @@ -57,7 +59,14 @@ public interface Manager : DBus.Object { public abstract string dump() throws DBus.Error; - public abstract ObjectPath create_snapshot(string name, bool cleanup = false) throws DBus.Error; + public abstract void reload() throws DBus.Error; + public abstract void reexecute() throws DBus.Error; + public abstract void exit() throws DBus.Error; + + public abstract ObjectPath create_snapshot(string name = "", bool cleanup = false) throws DBus.Error; + + public abstract void set_environment(string[] names) throws DBus.Error; + public abstract void unset_environment(string[] names) throws DBus.Error; public abstract signal void unit_new(string id, ObjectPath path); public abstract signal void unit_removed(string id, ObjectPath path); @@ -73,13 +82,16 @@ public interface Unit : DBus.Object { } public abstract string id { owned get; } + public abstract string[] names { owned get; } public abstract string description { owned get; } public abstract string load_state { owned get; } public abstract string active_state { owned get; } public abstract string sub_state { owned get; } public abstract string fragment_path { owned get; } + public abstract uint64 inactive_exit_timestamp { owned get; } public abstract uint64 active_enter_timestamp { owned get; } public abstract uint64 active_exit_timestamp { owned get; } + public abstract uint64 inactive_enter_timestamp { owned get; } public abstract bool can_start { owned get; } public abstract bool can_reload { owned get; } public abstract JobLink job { owned get; /* FIXME: this setter is a temporary fix to make valac not segfault */ set; }