summaryrefslogtreecommitdiff
path: root/src/basic/terminal-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-02-14 14:28:17 +0100
committerLennart Poettering <lennart@poettering.net>2018-02-14 14:28:17 +0100
commit0295642dda314559c8a5b188b21dbca8a99bf09a (patch)
tree5581869d9b8484ca9fed7fc42a883e3b9f316b93 /src/basic/terminal-util.c
parent6b7b0f394734d003241dcb601cbf795ba755e286 (diff)
downloadsystemd-0295642dda314559c8a5b188b21dbca8a99bf09a.tar.gz
terminal-util: add some explanatory comments
Diffstat (limited to 'src/basic/terminal-util.c')
-rw-r--r--src/basic/terminal-util.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/basic/terminal-util.c b/src/basic/terminal-util.c
index 97c876af0c..26c35ebe86 100644
--- a/src/basic/terminal-util.c
+++ b/src/basic/terminal-util.c
@@ -68,6 +68,9 @@ static volatile int cached_underline_enabled = -1;
int chvt(int vt) {
_cleanup_close_ int fd;
+ /* Switch to the specified vt number. If the VT is specified <= 0 switch to the VT the kernel log messages go,
+ * if that's configured. */
+
fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
if (fd < 0)
return -errno;
@@ -1205,6 +1208,12 @@ bool terminal_is_dumb(void) {
bool colors_enabled(void) {
+ /* Returns true if colors are considered supported on our stdout. For that we check $SYSTEMD_COLORS first
+ * (which is the explicit way to turn off/on colors). If that didn't work we turn off colors unless we are on a
+ * TTY. And if we are on a TTY we turn it off if $TERM is set to "dumb". There's one special tweak though: if
+ * we are PID 1 then we do not check whether we are connected to a TTY, because we don't keep /dev/console open
+ * continously due to fear of SAK, and hence things are a bit weird. */
+
if (cached_colors_enabled < 0) {
int val;