diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-12-04 13:20:31 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2016-12-04 13:20:31 +0100 |
commit | 79677204760502b2fdd0e06958a999b1fad0f940 (patch) | |
tree | b5c3eff1f13a9655ea13e9faba0c387a562fb278 /open_issues/increasing_bogus_port_at_boot.mdwn | |
parent | aef463c050add77d72259c5c9b630adbfb0409bb (diff) | |
parent | 45e529318e9963a4df0a900bd7b5bd29a6412183 (diff) | |
download | web-79677204760502b2fdd0e06958a999b1fad0f940.tar.gz web-79677204760502b2fdd0e06958a999b1fad0f940.tar.bz2 web-79677204760502b2fdd0e06958a999b1fad0f940.zip |
Merge commit '45e529318e9963a4df0a900bd7b5bd29a6412183'
Diffstat (limited to 'open_issues/increasing_bogus_port_at_boot.mdwn')
-rw-r--r-- | open_issues/increasing_bogus_port_at_boot.mdwn | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/open_issues/increasing_bogus_port_at_boot.mdwn b/open_issues/increasing_bogus_port_at_boot.mdwn new file mode 100644 index 00000000..483b2844 --- /dev/null +++ b/open_issues/increasing_bogus_port_at_boot.mdwn @@ -0,0 +1,31 @@ +[[!meta copyright="Copyright © 2016 Free Software +Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!tag open_issue_porting]] + +When the ntpdate package is installed, one gets at boot something like: + + Debian GNU/Hurd stretch/sid debian console + task ext2fs increasing a bogus port 947 by 1, most probably a bug. + task ext2fs increasing a bogus port 947 by 1, most probably a bug. + task ext2fs deallocating a bogus port 947, most probably a bug. + task ext2fs deallocating a bogus port 947, most probably a bug. + login: + +This is coming from the execution of the shell script +/etc/network/if-up.d/ntpdate, whose stdout/stderr is on the Mach console, but +part of which gets executed after getty starts on it. It happens that getty uses +revoke() to revoke access to it from other programs, and thus the ntpdate shell +scripts gets its stdout/stderr in a bogus state, which libc doesn't really cope +with correctly. + +Commenting `c:23:respawn:/sbin/getty 38400 console` from `/etc/inittab` works +around the issue (but removes the getty from the Mach console) |