diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-28 03:38:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-28 03:38:52 +0200 |
commit | f14e15f8affe906a45d8afc76c302a49cd1f70ee (patch) | |
tree | 5af3ffd29e33fddde628d8a79ea7400a9025aaf6 /src/dbus-unit.h | |
parent | 799fd0fd23028a58e1f605c6b0d9aaab65b4fb1f (diff) |
unit: replace recursive_stop by stop_retroactively to simplify things a little
Diffstat (limited to 'src/dbus-unit.h')
-rw-r--r-- | src/dbus-unit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbus-unit.h b/src/dbus-unit.h index 94e084f6e9..4a4d23e173 100644 --- a/src/dbus-unit.h +++ b/src/dbus-unit.h @@ -92,7 +92,7 @@ " <property name=\"CanStop\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"CanIsolate\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"Job\" type=\"(uo)\" access=\"read\"/>\n" \ - " <property name=\"RecursiveStop\" type=\"b\" access=\"read\"/>\n" \ + " <property name=\"StopRetroactively\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"StopWhenUnneeded\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"RefuseManualStart\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"RefuseManualStop\" type=\"b\" access=\"read\"/>\n" \ @@ -134,7 +134,7 @@ { "org.freedesktop.systemd1.Unit", "CanReload", bus_unit_append_can_reload, "b", u }, \ { "org.freedesktop.systemd1.Unit", "CanIsolate", bus_unit_append_can_isolate, "b", u }, \ { "org.freedesktop.systemd1.Unit", "Job", bus_unit_append_job, "(uo)", u }, \ - { "org.freedesktop.systemd1.Unit", "RecursiveStop", bus_property_append_bool, "b", &u->meta.recursive_stop }, \ + { "org.freedesktop.systemd1.Unit", "StopRetroactively", bus_property_append_bool, "b", &u->meta.stop_retroactively }, \ { "org.freedesktop.systemd1.Unit", "StopWhenUnneeded", bus_property_append_bool, "b", &u->meta.stop_when_unneeded }, \ { "org.freedesktop.systemd1.Unit", "RefuseManualStart", bus_property_append_bool, "b", &u->meta.refuse_manual_start }, \ { "org.freedesktop.systemd1.Unit", "RefuseManualStop", bus_property_append_bool, "b", &u->meta.refuse_manual_stop }, \ |