diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-09 18:00:24 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-09 18:00:24 +0200 |
commit | 6e98720f14dc25ee1d43f951d5c4d79b04ad7506 (patch) | |
tree | 1206be1cf30bbbb86b1549a1d6cf9491b9a5805d /src/dbus-manager.c | |
parent | 5de6b302196f3a708a0ed36d88abd9e17bbc9d52 (diff) |
service: hide output of sysv scripts if quiet is passed on the kernel cmdline
Diffstat (limited to 'src/dbus-manager.c')
-rw-r--r-- | src/dbus-manager.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dbus-manager.c b/src/dbus-manager.c index c1238f0066..549f175eb9 100644 --- a/src/dbus-manager.c +++ b/src/dbus-manager.c @@ -131,6 +131,7 @@ " <property name=\"Environment\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"ConfirmSpawn\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"ShowStatus\" type=\"b\" access=\"read\"/>\n" \ + " <property name=\"SysVConsole\" type=\"b\" access=\"read\"/>\n" \ " <property name=\"UnitPath\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"SysVInitPath\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"SysVRcndPath\" type=\"as\" access=\"read\"/>\n" \ @@ -240,6 +241,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection, { "org.freedesktop.systemd1.Manager", "Environment", bus_property_append_strv, "as", m->environment }, { "org.freedesktop.systemd1.Manager", "ConfirmSpawn", bus_property_append_bool, "b", &m->confirm_spawn }, { "org.freedesktop.systemd1.Manager", "ShowStatus", bus_property_append_bool, "b", &m->show_status }, + { "org.freedesktop.systemd1.Manager", "SysVConsole", bus_property_append_bool, "b", &m->sysv_console }, { "org.freedesktop.systemd1.Manager", "UnitPath", bus_property_append_strv, "as", m->lookup_paths.unit_path }, { "org.freedesktop.systemd1.Manager", "SysVInitPath", bus_property_append_strv, "as", m->lookup_paths.sysvinit_path }, { "org.freedesktop.systemd1.Manager", "SysVRcndPath", bus_property_append_strv, "as", m->lookup_paths.sysvrcnd_path }, |