diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-13 12:55:10 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-13 12:55:10 +0100 |
commit | ca2cbf6d84dcc96845fcc6521aebe3b5076cdb32 (patch) | |
tree | 86ab25a9c7434d62019359da0f996d2097aa8247 /bin | |
parent | 636fdb3b8fe582d2ba5da2d8b04276335e8451ab (diff) | |
download | debvm-ca2cbf6d84dcc96845fcc6521aebe3b5076cdb32.tar.gz |
change cmdline variable debvm.term to TERM
Jochen Sprickerhof found that systemd interprets the TERM variable
according to our intended meaning and applies it to pid 1. It doesn't
apply it to serial-getty, though so we keep that code for now.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/debvm-run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index 839653c..6ed47c4 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -268,7 +268,7 @@ if test -z "$GRAPHICAL"; then ;; esac if test -t 0 && test -t 1 && test -n "$TERM"; then - KERNEL_CMDLINE="$KERNEL_CMDLINE debvm.term=$TERM" + KERNEL_CMDLINE="$KERNEL_CMDLINE TERM=$TERM" fi fi |