Re: Bash-4.3 Official Patch 25

2014-09-25 Thread gnu.bash.bug
Hi, This patch does not seem to work on HP-UX: $ ./bash --version GNU bash, version 4.3.25(1)-release (ia64-hp-hpux11.31) Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; you are free to change

Re: vzctl enter hangs

2011-03-20 Thread gnu.bash.bug
Hi! For those who have not noticed yet... A new version of vzctl was released which fixes this issue: http://bugzilla.openvz.org/show_bug.cgi?id=1812#c7 Thanks for all help! Michael On 15 mar, 17:03, Chet Ramey wrote: > > > So vzctl is running bash in a pty and talking to it that way? > > >

Re: vzctl enter hangs

2011-03-15 Thread gnu.bash.bug
On 8 mar, 22:36, Chet Ramey wrote: > On 3/8/11 10:04 AM, gnu.bash.bug wrote: > > > Running "strace -fvzctlenter 152 " shows: > > Sovzctlis running bash in a pty and talking to it that way? > > I'd be interested in seeing what interrupted the select/read/wr

Re: vzctl enter hangs

2011-03-08 Thread gnu.bash.bug
Running "strace -f vzctl enter 152 " shows: [pid 19449] rt_sigaction(SIGTSTP, {0x80e0b10, [], SA_RESTORER, 0x9f8e98}, {0x1, [], SA_RESTORER, 0x9f8e98}, 8) = 0 [pid 19449] rt_sigaction(SIGTSTP, {0x1, [], SA_RESTORER, 0x9f8e98}, {0x80e0b10, [], SA_RESTORER, 0x9f8e98}, 8) = 0 [pid 19449] rt_sigaction

Re: vzctl enter hangs

2011-03-04 Thread gnu.bash.bug
Any hints how to troubleshoot this? I tried to change the root shell "to /bin/bash -v" but did not get any more output...seems as as the shell starts but hangs before displaying the prompt. The strange thing is that it works while logging in using ssh to the same container. //Michael

Re: vzctl enter hangs

2011-03-04 Thread gnu.bash.bug
I've noticed the same behavior while it works with the original redhat/cenos (3.2.25) shell it will not work with 4.2.6 Example: # vzctl enter 152 will just hang. Attaching to the bash process within the container shows the following backtrace: (gdb) bt #0 0x00f297f2 in _dl_sysinfo_int80

Re: bash tab variable expansion question?

2011-02-26 Thread gnu.bash.bug
Wow...I'ts good workaround: $ cd /tmp $ echo ~+ /tmp Thanks Andreas! //Michael On 26 Feb, 09:09, Andreas Schwab wrote: > "gnu.bash.bug" writes: > > What do you mean? > > > ~-/.  is no equal to $PWD > > If you want $PWD, you can use ~+/. > > A

Re: bash tab variable expansion question?

2011-02-25 Thread gnu.bash.bug
What do you mean? ~-/. is no equal to $PWD On 25 Feb, 16:03, Andreas Schwab wrote: > Greg Wooledge writes: > > Fortunately the workaround was simple enough -- once the filename had > > been completed I went back and x'ed out the \. > > Or use ~-/. > > Andreas. > > -- > Andreas Schwab, sch...@l

Re: bash tab variable expansion question?

2011-02-25 Thread gnu.bash.bug
Look at the following example: # touch 'file name with a space' if I press # ll file then I get: # ll file\ name\ with\ a\ space -rw-r--r-- 1 root sys 0 Feb 25 13:10 file name with a space The backslash '\' which reminds me of: # cd /tmp # mkdir hello # cd $PWD/hello W