diff options
author | Simon <965089+sarthurdev@users.noreply.github.com> | 2024-11-20 22:06:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 22:06:44 +0100 |
commit | 1a291b44716ae268916a95971016fb0cf9584ba0 (patch) | |
tree | 40266d4ec8dd8c91c446f46cccb892dda43d68df /data | |
parent | 3452f4239c91c6aaf30ed295482c26ef1b8c4697 (diff) | |
parent | f6ee516ca4409265b8b2b883c132357bf76655a3 (diff) | |
download | vyos-1x-1a291b44716ae268916a95971016fb0cf9584ba0.tar.gz vyos-1x-1a291b44716ae268916a95971016fb0cf9584ba0.zip |
Merge pull request #4201 from sarthurdev/T3397
serial: T3397: Remove `--keep-baud` which could result in unexpected baud rate
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/getty/serial-getty.service.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/getty/serial-getty.service.j2 b/data/templates/getty/serial-getty.service.j2 index 0183eae7d..687b05b6d 100644 --- a/data/templates/getty/serial-getty.service.j2 +++ b/data/templates/getty/serial-getty.service.j2 @@ -22,7 +22,7 @@ Before=rescue.service # The '-o' option value tells agetty to replace 'login' arguments with an # option to preserve environment (-p), followed by '--' for safety, and then # the entered username. -ExecStart=-/sbin/agetty -o '-p -- \\u' --keep-baud {{ speed }} %I $TERM +ExecStart=-/sbin/agetty -o '-p -- \\u' %I {{ speed }} $TERM Type=idle Restart=always UtmpIdentifier=%I |