diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-05-18 01:07:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-05-18 01:07:36 +0200 |
commit | 6ea832a20700f5282c08c70f38422c6ab290a0b5 (patch) | |
tree | bcd9a7705c87f3828adf70938ec59cdcfe368e72 /src/dbus-execute.h | |
parent | 9131f660eedb29d18a29e6efff49c485e683c56c (diff) |
exec: hangup/reset/deallocate VTs in gettys
Explicitly disconnect all clients from a VT when a getty starts/finishes
(requires TIOCVHANGUP, available in 2.6.29).
Explicitly deallocate getty VTs in order to flush scrollback buffer.
Explicitly reset terminals to a defined state before spawning getty.
Diffstat (limited to 'src/dbus-execute.h')
-rw-r--r-- | src/dbus-execute.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dbus-execute.h b/src/dbus-execute.h index ed66390d0b..bf3160b07a 100644 --- a/src/dbus-execute.h +++ b/src/dbus-execute.h @@ -128,6 +128,9 @@ { interface, "StandardOutput", bus_execute_append_output, "s", &(context).std_output }, \ { interface, "StandardError", bus_execute_append_output, "s", &(context).std_error }, \ { interface, "TTYPath", bus_property_append_string, "s", (context).tty_path }, \ + { interface, "TTYReset", bus_property_append_bool, "b", &(context).tty_reset }, \ + { interface, "TTYVHangup", bus_property_append_bool, "b", &(context).tty_vhangup }, \ + { interface, "TTYVTDisallocate", bus_property_append_bool, "b", &(context).tty_vt_disallocate }, \ { interface, "SyslogPriority", bus_property_append_int, "i", &(context).syslog_priority }, \ { interface, "SyslogIdentifier", bus_property_append_string, "s", (context).syslog_identifier }, \ { interface, "SyslogLevelPrefix", bus_property_append_bool, "b", &(context).syslog_level_prefix }, \ |