From unknown Tue Sep 09 13:16:29 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#12148 <12148@debbugs.gnu.org> To: bug#12148 <12148@debbugs.gnu.org> Subject: Status: 24.1.50; Tramp has problems with Solaris server (test -e) Reply-To: bug#12148 <12148@debbugs.gnu.org> Date: Tue, 09 Sep 2025 20:16:29 +0000 retitle 12148 24.1.50; Tramp has problems with Solaris server (test -e) reassign 12148 emacs submitter 12148 Carsten Bormann severity 12148 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 06 11:31:48 2012 Received: (at submit) by debbugs.gnu.org; 6 Aug 2012 15:31:48 +0000 Received: from localhost ([127.0.0.1]:37684 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SyPHX-0007cn-L1 for submit@debbugs.gnu.org; Mon, 06 Aug 2012 11:31:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:46907) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SyPHU-0007cf-U5 for submit@debbugs.gnu.org; Mon, 06 Aug 2012 11:31:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyP9q-0005QQ-DH for submit@debbugs.gnu.org; Mon, 06 Aug 2012 11:23:51 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:55836) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyP9q-0005QL-9O for submit@debbugs.gnu.org; Mon, 06 Aug 2012 11:23:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyP9o-0001Xu-Ke for bug-gnu-emacs@gnu.org; Mon, 06 Aug 2012 11:23:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyP9m-0005Oi-Ro for bug-gnu-emacs@gnu.org; Mon, 06 Aug 2012 11:23:48 -0400 Received: from mailhost.informatik.uni-bremen.de ([134.102.201.18]:35536 helo=informatik.uni-bremen.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyP9m-0005MB-Gz for bug-gnu-emacs@gnu.org; Mon, 06 Aug 2012 11:23:46 -0400 X-Virus-Scanned: amavisd-new at informatik.uni-bremen.de Received: from smtp-fb3.informatik.uni-bremen.de (smtp-fb3.informatik.uni-bremen.de [134.102.224.120]) by informatik.uni-bremen.de (8.14.3/8.14.3) with ESMTP id q76FNSW1021149 for ; Mon, 6 Aug 2012 17:23:28 +0200 (CEST) Received: from [192.168.217.105] (p54892F18.dip.t-dialin.net [84.137.47.24]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by smtp-fb3.informatik.uni-bremen.de (Postfix) with ESMTPSA id 6F816AA0; Mon, 6 Aug 2012 17:23:28 +0200 (CEST) From: Carsten Bormann Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Mon, 6 Aug 2012 17:23:26 +0200 Subject: 24.1.50; Tramp has problems with Solaris server (test -e) To: bug-gnu-emacs@gnu.org Message-Id: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> Mime-Version: 1.0 (Mac OS X Mail 6.0 \(1485\)) X-Mailer: Apple Mail (2.1485) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Please describe exactly what actions triggered the bug, and the precise symptoms of the bug. If you can, give a recipe starting from `emacs -Q': -- find a file via tramp on a Solaris 5.11 server (e.g., .bash_history) -- exit emacs, so that a .emacs.d/tramp is written -- find the file again -> Error Couldn't find exit status of `test -e = /users/home/cabo/.bash_history' Solaris /bin/sh does not support test -e. Worse, there is strange behavior when you use it: bash$ /bin/sh $ test -e foo ; echo $? test: argument expected $ So anything after the failing test does not get executed, which appears = to destroy tramp's exit status management. This appears to get circumvented correctly once, but the .emacs.d/tramp written out from the first emacs says: ("file-exists" "test -e") which is clearly wrong. So the next incarnation of emacs will no longer work correcly with that Solaris server. Workaround: kill emacs, edit ~/.emacs.d/tramp to say ("file-exists" "/bin/test -e") and restart emacs. (Because of the caching in .emacs.d/tramp and the behavior of writing = out the tramp file during kill-emacs, this can be very confusing to = debug. It took me a while to understand that the "works/doesn't = work/works/doesn't work" behavior can only be explained by to the tramp = file written out with bad information.) In GNU Emacs 24.1.50.1 (x86_64-apple-darwin, NS apple-appkit-1038.36) of 2012-08-04 on bob.porkrind.org Bzr revision: 109423 eggert@cs.ucla.edu-20120804005210-ydbx97z1govlzuik Windowing system distributor `Apple', version 10.3.1187 Configured using: `configure '--host=3Dx86_64-apple-darwin' '--build=3Di686-apple-darwin' '--with-ns' 'build_alias=3Di686-apple-darwin' 'host_alias=3Dx86_64-apple-darwin' 'CC=3Dgcc = -mmacosx-version-min=3D10.5'' Important settings: value of $LC_CTYPE: UTF-8 locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Dired by name Minor modes in effect: shell-dirtrack-mode: t tooltip-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: C-x C-f / a : =20 Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Tramp: Opening connection for a using scpc... Tramp: Sending command `exec ssh -o = ControlPath=3D/var/folders/hy/4kd7dc593jn5wbqln6_hj_940000gn/T/tramp.28882= -39.%r@%h:%p -o ControlMaster=3Dyes -e none a' Tramp: Waiting for prompts from remote shell Tramp: Sending command `exec ssh -o = ControlPath=3D/var/folders/hy/4kd7dc593jn5wbqln6_hj_940000gn/T/tramp.28882= -39.%r@%h:%p -o ControlMaster=3Dyes -e none a' Tramp: Found remote shell prompt on `a' Tramp: Opening connection for a using scpc...done ls does not support --dired; see `dired-use-ls-dired' for more details. byte-code: Couldn't find exit status of `test -e = /users/home/cabo/.bash_history' Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mail-utils dired tramp-cache tramp-sh tramp tramp-compat auth-source eieio byte-opt bytecomp byte-compile cconv macroexp gnus-util mm-util mail-prsvr password-cache tramp-loaddefs shell pcomplete comint ansi-color ring format-spec advice help-fns advice-preload time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel ns-win tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer loaddefs button faces cus-face files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process ns multi-tty emacs) From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 07 04:59:28 2012 Received: (at 12148) by debbugs.gnu.org; 7 Aug 2012 08:59:28 +0000 Received: from localhost ([127.0.0.1]:38787 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SyfdP-0004uM-Pf for submit@debbugs.gnu.org; Tue, 07 Aug 2012 04:59:28 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:59534) by debbugs.gnu.org with smtp (Exim 4.72) (envelope-from ) id 1SyfdN-0004uE-9U for 12148@debbugs.gnu.org; Tue, 07 Aug 2012 04:59:26 -0400 Received: (qmail invoked by alias); 07 Aug 2012 08:51:25 -0000 Received: from p57BB9590.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.149.144] by mail.gmx.net (mp038) with SMTP; 07 Aug 2012 10:51:25 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX1+CsfsIEMCC7Ymn9KK23IHgfg94/0QWQXWHg+Zmtp 34XW3micy8NRlM From: Michael Albinus To: Carsten Bormann Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> X-From-Line: michael.albinus@gmx.de Tue Aug 07 10:48:54 2012 X-Content-Length: 1128 Date: Tue, 07 Aug 2012 10:51:20 +0200 Message-ID: <87ehnjaxvb.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Y-GMX-Trusted: 0 X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12148 Cc: 12148@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Carsten Bormann writes: > This appears to get circumvented correctly once, but the .emacs.d/tramp > written out from the first emacs says: > > ("file-exists" "test -e") > > which is clearly wrong. > So the next incarnation of emacs will no longer work correcly with that > Solaris server. Hmm. In `tramp-find-file-exists-command', it is correctly tested for "test -e", "/bin/test -e" aso. But the cache seems to get the wrong value. I would need to analyze the cache operations. Would you, please, apply "M-x tramp-cleanup-all-connections" (this also removes cache settings), set `tramp-verbose' to 9, and rerun the test? The resulting debug buffer shall tell us more. > (Because of the caching in .emacs.d/tramp and the behavior of writing out the tramp file during kill-emacs, this can be very confusing to debug. It took me a while to understand that the "works/doesn't work/works/doesn't work" behavior can only be explained by to the tramp file written out with bad information.) Maybe the Tramp info file shall be improved for recipes how to disable the cache for debugging. Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 07 12:32:10 2012 Received: (at 12148) by debbugs.gnu.org; 7 Aug 2012 16:32:10 +0000 Received: from localhost ([127.0.0.1]:40029 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SymhV-0000TA-J6 for submit@debbugs.gnu.org; Tue, 07 Aug 2012 12:32:10 -0400 Received: from mailhost.informatik.uni-bremen.de ([134.102.201.18]:38600 helo=informatik.uni-bremen.de) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SymhS-0000T1-Eo for 12148@debbugs.gnu.org; Tue, 07 Aug 2012 12:32:08 -0400 X-Virus-Scanned: amavisd-new at informatik.uni-bremen.de Received: from smtp-fb3.informatik.uni-bremen.de (smtp-fb3.informatik.uni-bremen.de [134.102.224.120]) by informatik.uni-bremen.de (8.14.3/8.14.3) with ESMTP id q77GNxrP011710; Tue, 7 Aug 2012 18:23:59 +0200 (CEST) Received: from [10.0.1.2] (reingewinn.informatik.uni-bremen.de [134.102.218.123]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by smtp-fb3.informatik.uni-bremen.de (Postfix) with ESMTPSA id 7E7B4F3A; Tue, 7 Aug 2012 18:23:59 +0200 (CEST) Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) Mime-Version: 1.0 (Mac OS X Mail 6.0 \(1485\)) Content-Type: multipart/mixed; boundary="Apple-Mail=_E6735633-0660-4E59-A61B-33E29C93B3C2" From: Carsten Bormann In-Reply-To: <87ehnjaxvb.fsf@gmx.de> Date: Tue, 7 Aug 2012 18:23:58 +0200 Message-Id: <5334FB1F-2455-4513-9B42-4DB7175FD71E@tzi.org> References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> <87ehnjaxvb.fsf@gmx.de> To: Michael Albinus X-Mailer: Apple Mail (2.1485) X-Debbugs-Envelope-To: 12148 Cc: 12148@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org --Apple-Mail=_E6735633-0660-4E59-A61B-33E29C93B3C2 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On Aug 7, 2012, at 10:51, Michael Albinus = wrote: > Carsten Bormann writes: >=20 >> This appears to get circumvented correctly once, but the = .emacs.d/tramp >> written out from the first emacs says: >>=20 >> ("file-exists" "test -e") >>=20 >> which is clearly wrong. >> So the next incarnation of emacs will no longer work correcly with = that >> Solaris server. >=20 > Hmm. In `tramp-find-file-exists-command', it is correctly tested for > "test -e", "/bin/test -e" aso. But the cache seems to get the wrong = value. >=20 > I would need to analyze the cache operations. Would you, please, apply > "M-x tramp-cleanup-all-connections" (this also removes cache = settings), > set `tramp-verbose' to 9, and rerun the test? The resulting debug = buffer > shall tell us more. Interesting. With tramp-cleanup-all-connections I didn't need the = two-step process to trigger the bug. Again, the problem is that test -e suppresses the rest of the command = line in /bin/sh on Solaris, so the first "test -e" fails right away, but = is somehow recovered using another attempt that uses test -d. The = attempt to find-file (open) .bash_history then completely fails on what = seems to be the same kind of "test -e" (hmm, why didn't it do that in my = previous tests before I wrote the tramp file). resulting tramp file as well as debug buffer (slightly sanitized) = attached. Gr=FC=DFe, Carsten --Apple-Mail=_E6735633-0660-4E59-A61B-33E29C93B3C2 Content-Disposition: attachment; filename=tramp Content-Type: application/octet-stream; name="tramp" Content-Transfer-Encoding: 7bit ;; -*- emacs-lisp -*- <12/08/06 17:23:35 /Users/cabo/.emacs.d/tramp> ;; Tramp connection history. Don't change this file. ;; You can delete it, forcing Tramp to reapply the checks. ((["scpc" nil "a" nil nil] ("uname" "SunOS 5.11") ("test" "test") ("remote-path" ("/usr/xpg4/bin" "/usr/ccs/bin" "/usr/bin" "/bin" "/usr/sbin" "/usr/local/bin")) ("busybox" nil) ("remote-shell" "/usr/bin/bash") ("~" "/users/home/cabo") ("file-exists" "test -e") ("perl-file-spec" t) ("perl-cwd-realpath" t) ("perl" "\\perl") ("ls" "/usr/xpg4/bin/ls") ("ls-dired" nil) ("stat" nil) ("id" "/usr/xpg4/bin/id") ("gid-integer" 1003) ("readlink" nil))) --Apple-Mail=_E6735633-0660-4E59-A61B-33E29C93B3C2 Content-Disposition: attachment; filename=debug-tramp-scpc-a Content-Type: application/octet-stream; x-unix-mode=0644; name="debug-tramp-scpc-a" Content-Transfer-Encoding: quoted-printable ;;=20GNU=20Emacs:=2024.1.50.1=20Tramp:=202.2.6-pre=20-*-=20mode:=20= outline;=20-*-=0A18:11:02.248934=20tramp-maybe-open-connection=20(3)=20#=20= Opening=20connection=20for=20a=20using=20scpc...=0A18:11:02.249972=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:02.250131=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:02.254614=20tramp-set-connection-property=20= (7)=20#=20vector=20[scpc=20nil=20a=20/users/home/cabo/=20nil]=0A= 18:11:02.255037=20tramp-maybe-open-connection=20(6)=20#=20/bin/sh=20-i=0A= 18:11:02.255193=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:02.255309=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:02.357638=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:02.357865=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:02.358081=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:02.358320=20tramp-get-file-property=20(8)=20#=20=20gateway=20nil=0A= 18:11:02.359234=20tramp-set-connection-property=20(7)=20#=20temp-file=20= /var/folders/hy/4kd7dc593jn5wbqln6_hj_940000gn/T/tramp.99602W4T=0A= 18:11:02.405284=20tramp-maybe-open-connection=20(3)=20#=20Sending=20= command=20`exec=20ssh=20=20=20-o=20= ControlPath=3D/var/folders/hy/4kd7dc593jn5wbqln6_hj_940000gn/T/tramp.99602= W4T.%r@%h:%p=20-o=20ControlMaster=3Dyes=20-e=20none=20a'=0A= 18:11:02.405429=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:02.405612=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:02.405722=20tramp-send-command=20(6)=20#=20= exec=20ssh=20=20=20-o=20= ControlPath=3D/var/folders/hy/4kd7dc593jn5wbqln6_hj_940000gn/T/tramp.99602= W4T.%r@%h:%p=20-o=20ControlMaster=3Dyes=20-e=20none=20a=0A= 18:11:02.405829=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:02.405953=20tramp-get-connection-property=20(7)=20#=20= chunksize=20nil=0A18:11:02.406068=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015894=20406018=200)=0A18:11:02.406179=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:02.406535=20tramp-set-connection-property=20(7)=20#=20= first-password-request=20t=0A18:11:02.420414=20tramp-process-actions=20= (3)=20#=20Waiting=20for=20prompts=20from=20remote=20shell=0A= 18:11:03.421479=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A= 18:11:03.421748=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:03.422010=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.422225=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20= remote=20shell=0A18:11:03.422509=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:03.422667=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.422840=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:03.423010=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.423159=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:03.423362=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:03.423549=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:03.423699=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.423850=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:03.424030=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.424215=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:03.424371=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:03.424563=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:03.424711=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.424878=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:03.425035=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:03.425230=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.425378=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:03.425528=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:03.425716=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.425949=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:03.426204=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:03.426422=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:03.426564=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:04.427667=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:04.427937=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.428163=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.428380=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:04.428607=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.428848=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.429064=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:04.429320=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.429476=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.429675=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:04.429829=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:04.429999=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.430150=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:04.430305=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.430431=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.430540=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:04.430654=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.430773=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.430881=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:04.430998=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:04.431110=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.431213=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:04.431326=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:04.431431=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.431543=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:04.431643=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:04.431744=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:04.431839=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:05.432888=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:05.433170=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.433387=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.433592=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:05.433831=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.434027=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.434264=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:05.434491=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.434647=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.434807=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:05.434969=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:05.435150=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.435302=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:05.435463=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.435608=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.435776=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:05.435929=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.436185=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.436452=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:05.436628=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:05.436776=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.436934=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:05.437154=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:05.437293=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.437417=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:05.437556=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:05.437684=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:05.437829=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:06.339442=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:06.339708=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.339903=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.340305=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:06.340515=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.340699=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.340881=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:06.341059=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.341206=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.341403=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:06.357007=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:06.357146=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.357262=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:06.357358=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.357463=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.357556=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:06.357637=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.357716=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.357797=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:06.357879=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:06.357957=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.358037=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:06.358118=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:06.358196=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.358272=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:06.358349=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:06.358430=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:06.358504=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:07.059804=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:07.059941=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.060054=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.061188=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:07.061291=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.061388=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.061569=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:07.061680=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.061808=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.062299=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:07.062471=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:07.062577=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.062737=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:07.062839=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.062935=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.063146=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:07.063245=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.063339=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.063445=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:07.063543=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:07.063636=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.063744=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:07.063848=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:07.063952=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.064040=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:07.064120=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:07.064197=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:07.064272=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:08.064899=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:08.065167=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.065350=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.066653=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:08.066760=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.066856=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.067073=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:08.067180=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.067276=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.067604=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:08.067702=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:08.067798=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.067939=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:08.068039=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.068133=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.068331=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:08.068431=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.068525=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.068657=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:08.068836=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:08.068985=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.069162=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:08.069322=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:08.069478=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.069644=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:08.069746=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:08.069839=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:08.069925=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:09.070998=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:09.071193=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.071339=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.072894=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:09.073053=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.073182=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.073422=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:09.073581=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.073676=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.074005=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:09.074103=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:09.074225=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.074422=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:09.074532=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.074635=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.074832=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:09.074931=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.075025=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.075130=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:09.075237=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:09.075331=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.075438=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:09.075536=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:09.075629=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.075739=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:09.075835=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:09.075927=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:09.076017=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:10.076757=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:10.076896=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.077001=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.078153=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:10.078306=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.078412=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.078593=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:10.078700=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.078795=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.079120=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:10.079219=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:10.079313=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.079454=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:10.079553=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.079645=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.079843=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:10.079941=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.080037=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.080145=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:10.080264=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:10.080412=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.080527=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:10.080652=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:10.080749=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.080861=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:10.080960=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.081039=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.081115=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:10.182059=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:10.182190=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.182293=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.183310=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:10.183396=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.183478=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.183635=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:10.183741=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.183822=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.184115=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:10.184197=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:10.184284=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.184405=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(?:^\|=0D\)[^]#$%>=0A]*#?[]#$%>]=20*\(=1B\[[0-9;]*[a-zA-Z]=20= *\)*\)\'"=20from=20remote=20shell=0A18:11:10.184503=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.184592=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.184842=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(\(Are=20you=20sure=20you=20want=20= to=20continue=20connecting=20(yes/no)\?\)\s-*\)\'"=20from=20remote=20= shell=0A18:11:10.184929=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.185008=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.185117=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(\(?:Store=20key=20in=20cache\?=20(y/\|Update=20cached=20= key\?=20(y/n,=20Return=20cancels=20connectio\)n)\)\s-*\)\'"=20from=20= remote=20shell=0A18:11:10.185200=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:10.185279=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.185382=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\(TERM=20=3D=20(.*)\|Terminal=20type\?=20\[.*\]\)\s-*\)\'"=20= from=20remote=20shell=0A18:11:10.185465=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:10.185544=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.185645=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(\)\'"=20from=20remote=20shell=0A18:11:10.185727=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.185806=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.185881=20tramp-process-one-action=20= (5)=20#=20Call=20`tramp-action-process-alive'=0A18:11:10.387924=20= tramp-process-one-action=20(5)=20#=20Looking=20for=20regexp=20= "\(.*ogin\(=20.*\)?:=20*\)\'"=20from=20remote=20shell=0A18:11:10.388210=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.388423=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.390655=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20= "\(^.*\([pP]assword\|[pP]assphrase\).*:=00?=20*\)\'"=20from=20remote=20= shell=0A18:11:10.390816=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.390969=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.391288=20tramp-process-one-action=20(5)=20#=20Looking=20for=20= regexp=20"\(^.*\(Connection=20\(?:\(?:clo\|refu\)sed\)\|Host=20key=20= verification=20failed\.\|Login=20\(?:[Ii]ncorrect\)\|N\(?:ame=20or=20= service=20not=20known\|o=20supported=20authentication=20methods=20left=20= to=20try!\)\|Permission=20denied\|\(?:Sorry,=20try=20again\|Timeout,=20= server=20not=20responding\)\.\).*\|^.*\(Received=20signal=20= [0-9]+\).*\)\'"=20from=20remote=20shell=0A18:11:10.391454=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.391598=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:10.392154=20tramp-process-one-action=20= (5)=20#=20Looking=20for=20regexp=20"\(^[^#$%>=0A]*[#$%>]=20*\)\'"=20from=20= remote=20shell=0A18:11:10.392306=20tramp-get-connection-property=20(7)=20= #=20check-remote-echo=20nil=0A18:11:10.392475=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:10.392645=20tramp-process-one-action=20(5)=20#=20Call=20= `tramp-action-succeed'=0A18:11:10.392771=20tramp-get-connection-property=20= (7)=20#=20process-buffer=20nil=0A18:11:10.392900=20tramp-process-actions=20= (6)=20#=20=0ALast=20login:=20Mon=20Aug=20=206=2015:08:51=202012=20from=20= 84.137.47.24=0D=0A=20=20=20=20=20=20=20=20=20=20= ______________________________________________=0A=20________|=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20|_________=0A\=20=20=20= =20=20=20=20=20|=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= anchor.joyent.us=20=20=20=20=20=20=20=20=20=20=20=20=20=20|=20=20=20=20=20= =20=20=20/=0A=20\=20=20=20=20=20=20=20|=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20|=20=20=20=20=20=20=20/=0A=20=20\=20=20=20=20=20= =20|=20=20=20"A=20faithful=20companion=20is=20a=20sure=20anchor."=20=20=20= |=20=20=20=20=20=20/=0A=20=20/=20=20=20=20=20=20= |______________________________________________|=20=20=20=20=20=20\=0A=20= /___________)=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20(___________\=0A=0A= =1B]0;cabo=20on=20anchor.joyent.us=20at=20/users/home/cabo=07[anchor:~]=20= =1B[1;34mcabo=1B[0m$=20=0A18:11:10.393038=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:10.411152=20tramp-maybe-open-connection=20(3)=20#=20Found=20remote=20= shell=20prompt=20on=20`a'=0A18:11:10.411323=20tramp-open-shell=20(5)=20#=20= Opening=20remote=20shell=20`/bin/sh'...=0A18:11:10.411525=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:10.411682=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:10.411805=20tramp-send-command=20(6)=20#=20exec=20env=20= ENV=3D''=20PROMPT_COMMAND=3D''=20PS1=3D\#\$\=20=20PS2=3D''=20PS3=3D''=20= /bin/sh=0A18:11:10.423960=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:10.424163=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:10.424332=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015902=20= 424265=200)=0A18:11:10.424437=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:10.424602=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:10.424702=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:11.425477=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:11.425663=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:11.926930=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:11.927129=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:11.927307=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:11.927529=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:11.927699=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:11.927847=20tramp-send-command=20(6)=20#=20= PS1=3D\#\$\=20=0A18:11:11.927996=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:11.928170=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:11.928328=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015903=20= 928263=200)=0A18:11:11.928492=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:11.928710=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:11.928872=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.130175=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.130402=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.130657=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:12.130929=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:12.131202=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:12.131331=20tramp-send-command=20(6)=20#=20= PS2=3D''=0A18:11:12.131421=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:12.131527=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:12.131630=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015904=20= 131589=200)=0A18:11:12.131733=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:12.131898=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:12.132051=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.333315=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.333604=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.333849=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:12.334043=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:12.334250=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:12.334439=20tramp-send-command=20(6)=20#=20= PS3=3D''=0A18:11:12.334571=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:12.334726=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:12.334876=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015904=20= 334816=200)=0A18:11:12.335024=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:12.335263=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:12.335450=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.536956=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.537230=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.537436=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:12.537629=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:12.537851=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:12.537989=20tramp-send-command=20(6)=20#=20= PROMPT_COMMAND=3D''=0A18:11:12.538126=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:12.538368=20= tramp-get-connection-property=20(7)=20#=20chunksize=20nil=0A= 18:11:12.538630=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015904=20538531=200)=0A18:11:12.538872=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:12.539086=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.539234=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.740198=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.740314=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:12.740416=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:12.740512=20tramp-open-shell=20(5)=20#=20Opening=20remote=20shell=20= `/bin/sh'...done=0A18:11:12.740593=20= tramp-open-connection-setup-interactive-shell=20(5)=20#=20Setting=20up=20= remote=20shell=20environment=0A18:11:12.740682=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:12.740789=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:12.740893=20tramp-send-command=20(6)=20#=20stty=20-inlcr=20= -echo=20kill=20'^U'=20erase=20'^H'=0A18:11:12.740969=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:12.741055=20tramp-get-connection-property=20(7)=20#=20chunksize=20= nil=0A18:11:12.741138=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015904=20741104=200)=0A18:11:12.741222=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:12.741352=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:12.741443=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.243559=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:13.243779=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.243981=20tramp-wait-for-regexp=20(6)=20#=20=0A#$=20=0A= 18:11:13.244174=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:13.244377=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:13.244536=20tramp-send-command=20(6)=20#=20= echo=20foo=0A18:11:13.244695=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:13.244885=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:13.245069=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015905=20= 245008=200)=0A18:11:13.245222=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:13.245420=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:13.245567=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.546819=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:13.546933=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.547039=20tramp-wait-for-regexp=20(6)=20#=20=0Afoo=0A#$=20=0A= 18:11:13.547140=20tramp-open-connection-setup-interactive-shell=20(5)=20= #=20Setting=20shell=20prompt=0A18:11:13.547263=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:13.547361=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:13.547487=20tramp-send-command=20(6)=20#=20= PS1=3D///ab48b5bc1602ca2e901f81dbbf8bea28\#\$=0A18:11:13.547590=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:13.547679=20tramp-get-connection-property=20(7)=20#=20chunksize=20= nil=0A18:11:13.547765=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015905=20547731=200)=0A18:11:13.547850=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:13.547984=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:13.548076=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.849730=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:13.849952=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:13.850171=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:13.850472=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:13.850676=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:13.850810=20tramp-send-command=20(6)=20#=20PS2=3D''=0A= 18:11:13.850942=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:13.851099=20tramp-get-connection-property=20(7)=20#=20= chunksize=20nil=0A18:11:13.851247=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015905=20851187=200)=0A18:11:13.851398=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:13.851630=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:13.851877=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.153135=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.153252=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.153363=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:14.153496=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.153595=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:14.153668=20tramp-send-command=20(6)=20#=20PS3=3D''=0A= 18:11:14.153742=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:14.153829=20tramp-get-connection-property=20(7)=20#=20= chunksize=20nil=0A18:11:14.153912=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015906=20153877=200)=0A18:11:14.153997=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:14.154134=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.154261=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.356460=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.356691=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.356941=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:14.357222=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.357460=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:14.357621=20tramp-send-command=20(6)=20#=20PROMPT_COMMAND=3D''= =0A18:11:14.357784=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:14.357991=20tramp-get-connection-property=20= (7)=20#=20chunksize=20nil=0A18:11:14.358145=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015906=20= 358084=200)=0A18:11:14.358294=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:14.358542=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:14.358729=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.560181=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.560419=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.560644=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:14.560915=20= tramp-open-connection-setup-interactive-shell=20(5)=20#=20Determining=20= coding=20system=0A18:11:14.561113=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:14.561317=20tramp-get-connection-property=20= (7)=20#=20remote-echo=20nil=0A18:11:14.561492=20tramp-send-command=20(6)=20= #=20echo=20foo=20;=20echo=20bar=0A18:11:14.561629=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.561784=20tramp-get-connection-property=20(7)=20#=20chunksize=20= nil=0A18:11:14.561934=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015906=20561873=200)=0A18:11:14.562095=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:14.562345=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.562534=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.763951=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.764132=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.764307=20tramp-wait-for-regexp=20(6)=20#=20=0Afoo=0Abar=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:14.764562=20= tramp-open-connection-setup-interactive-shell=20(5)=20#=20Setting=20= coding=20system=20to=20`utf-8-unix'=20and=20`utf-8-unix'=0A= 18:11:14.764736=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:14.764897=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:14.765030=20tramp-send-command=20(6)=20#=20set=20= +o=20vi=20+o=20emacs=0A18:11:14.765159=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:14.765317=20= tramp-get-connection-property=20(7)=20#=20chunksize=20nil=0A= 18:11:14.765465=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015906=20765404=200)=0A18:11:14.765666=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:14.765883=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.766064=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.967199=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.967396=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:14.967601=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:14.967850=20= tramp-open-connection-setup-interactive-shell=20(5)=20#=20Checking=20= system=20information=0A18:11:14.968010=20tramp-get-connection-property=20= (7)=20#=20uname=20SunOS=205.11=0A18:11:14.968177=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.968347=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:14.968508=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:14.968657=20tramp-get-connection-property=20= (7)=20#=20last-cmd-time=20(20513=2015906=20765404=200)=0A18:11:14.968841=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.969047=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:14.969203=20tramp-send-command=20(6)=20#=20echo=20\"`uname=20= -sr`\"=202>/dev/null;=20echo=20tramp_exit_status=20$?=0A18:11:14.969350=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:14.969510=20tramp-get-connection-property=20(7)=20#=20chunksize=20= nil=0A18:11:14.969616=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015906=20969574=200)=0A18:11:14.969736=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:14.969896=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:14.970008=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:15.384384=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:15.384557=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:15.384677=20tramp-wait-for-regexp=20(6)=20#=20=0A"SunOS=205.11"=0A= tramp_exit_status=200=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A= 18:11:15.384828=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:15.384946=20tramp-get-connection-property=20= (7)=20#=20process-buffer=20nil=0A18:11:15.385048=20= tramp-set-connection-property=20(7)=20#=20uname=20SunOS=205.11=0A= 18:11:15.385150=20tramp-get-connection-property=20(7)=20#=20chunksize=20= undef=0A18:11:15.385236=20tramp-open-connection-setup-interactive-shell=20= (5)=20#=20Checking=20remote=20host=20type=20for=20`send-process-string'=20= bug=0A18:11:15.385323=20tramp-get-connection-property=20(7)=20#=20uname=20= SunOS=205.11=0A18:11:15.385426=20tramp-set-connection-property=20(7)=20#=20= chunksize=200=0A18:11:15.385520=20tramp-set-remote-path=20(5)=20#=20= Setting=20$PATH=20environment=20variable=0A18:11:15.385606=20= tramp-get-connection-property=20(7)=20#=20remote-path=20(/usr/xpg4/bin=20= /usr/ccs/bin=20/usr/bin=20/bin=20/usr/sbin=20/usr/local/bin)=0A= 18:11:15.385708=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:15.385797=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:15.385884=20tramp-get-connection-property=20= (7)=20#=20process-buffer=20nil=0A18:11:15.385989=20= tramp-get-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015906=20= 969574=200)=0A18:11:15.386092=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:15.386196=20tramp-get-connection-property=20= (7)=20#=20remote-echo=20nil=0A18:11:15.386281=20tramp-send-command=20(6)=20= #=20= PATH=3D/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/bin:/usr/sbin:/usr/local/bin;=20= export=20PATH=0A18:11:15.386368=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:15.386470=20tramp-get-connection-property=20= (7)=20#=20chunksize=200=0A18:11:15.386572=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015907=20= 386533=200)=0A18:11:15.386668=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:15.386831=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:15.386947=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:15.688809=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:15.689177=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:15.689513=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:15.689925=20= tramp-get-connection-property=20(7)=20#=20remote-shell=20/usr/bin/bash=0A= 18:11:15.690177=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:15.690458=20tramp-get-connection-property=20(7)=20#=20= remote-echo=20nil=0A18:11:15.690693=20tramp-send-command=20(6)=20#=20= mesg=20n;=20biff=20n=0A18:11:15.690926=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:15.691210=20= tramp-get-connection-property=20(7)=20#=20chunksize=200=0A= 18:11:15.691489=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015907=20691388=200)=0A18:11:15.691769=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:15.692113=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:15.692343=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.293611=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.293728=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.293841=20tramp-wait-for-regexp=20(6)=20#=20=0Abiff:=20not=20= found=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:16.293993=20= tramp-get-connection-property=20(7)=20#=20uname=20SunOS=205.11=0A= 18:11:16.294086=20tramp-get-connection-property=20(7)=20#=20uname=20= SunOS=205.11=0A18:11:16.294180=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:16.294264=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:16.294350=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:16.294451=20tramp-get-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015907=20691388=200)=0A18:11:16.294575=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:16.294688=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:16.294771=20tramp-send-command=20(6)=20#=20echo=20\"`tty`\"=20= 2>/dev/null;=20echo=20tramp_exit_status=20$?=0A18:11:16.294866=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:16.294966=20tramp-get-connection-property=20(7)=20#=20chunksize=20= 0=0A18:11:16.295066=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015908=20295028=200)=0A18:11:16.295159=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:16.295331=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.295469=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.596751=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.596937=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.597138=20tramp-wait-for-regexp=20(6)=20#=20=0A"/dev/pts/1"=0A= tramp_exit_status=200=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A= 18:11:16.597390=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:16.597582=20tramp-get-connection-property=20= (7)=20#=20process-buffer=20nil=0A18:11:16.597756=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:16.597941=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:16.598082=20tramp-send-command=20(6)=20#=20stty=20-a=0A= 18:11:16.598213=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:16.598378=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:16.598562=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015908=20598490=200)=0A18:11:16.598707=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:16.598930=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.599106=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.800137=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.800267=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:16.800377=20tramp-wait-for-regexp=20(6)=20#=20=0Aspeed=209600=20= baud;=20=0Acsdata=20?=0Aeucw=201:0:0:0,=20scrw=201:0:0:0=0Aintr=20=3D=20= ^c;=20quit=20=3D=20^\;=20erase=20=3D=20^h;=20kill=20=3D=20^u;=0Aeof=20=3D=20= ^d;=20eol=20=3D=20-^?;=20eol2=20=3D=20-^?;=20swtch=20=3D=20;=0A= start=20=3D=20^q;=20stop=20=3D=20^s;=20susp=20=3D=20^z;=20dsusp=20=3D=20= ^y;=0Arprnt=20=3D=20^r;=20flush=20=3D=20^o;=20werase=20=3D=20^w;=20lnext=20= =3D=20^v;=0A-parenb=20-parodd=20cs8=20-cstopb=20-hupcl=20cread=20-clocal=20= -loblk=20-crtscts=20-crtsxoff=20-parext=20=0A-ignbrk=20brkint=20-ignpar=20= -parmrk=20-inpck=20-istrip=20-inlcr=20-igncr=20icrnl=20-iuclc=20=0Aixon=20= ixany=20-ixoff=20imaxbel=20=0Aisig=20icanon=20-xcase=20-echo=20echoe=20= -echok=20-echonl=20-noflsh=20=0A-tostop=20echoctl=20-echoprt=20echoke=20= -defecho=20-flusho=20-pendin=20iexten=20=0Aopost=20-olcuc=20-onlcr=20= -ocrnl=20-onocr=20-onlret=20-ofill=20-ofdel=20tab3=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:16.800566=20= tramp-open-connection-setup-interactive-shell=20(5)=20#=20Setting=20= default=20environment=0A18:11:16.800671=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:16.800769=20= tramp-get-connection-property=20(7)=20#=20remote-echo=20nil=0A= 18:11:16.800850=20tramp-send-command=20(6)=20#=20= HISTFILE=3D$HOME/.tramp_history;=20export=20HISTFILE=0A18:11:16.800931=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:16.801026=20tramp-get-connection-property=20(7)=20#=20chunksize=20= 0=0A18:11:16.801130=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015908=20801091=200)=0A18:11:16.801248=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:16.801455=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:16.801615=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.002882=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.003081=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.003277=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:17.003542=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:17.003722=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:17.003867=20tramp-send-command=20(6)=20#=20HISTSIZE=3D1;=20= export=20HISTSIZE=0A18:11:17.004014=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:17.004202=20= tramp-get-connection-property=20(7)=20#=20chunksize=200=0A= 18:11:17.004382=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015909=204316=200)=0A18:11:17.004550=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:17.004771=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.004935=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.206214=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.206442=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.206660=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:17.206870=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:17.206987=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:17.207139=20tramp-send-command=20(6)=20#=20LC_ALL=3DC;=20= export=20LC_ALL=0A18:11:17.207322=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:17.207544=20tramp-get-connection-property=20= (7)=20#=20chunksize=200=0A18:11:17.207716=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015909=20= 207654=200)=0A18:11:17.207863=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:17.208100=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:17.208230=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.409768=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.410001=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.410175=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:17.410417=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:17.410580=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:17.410709=20tramp-send-command=20(6)=20#=20TERM=3Ddumb;=20= export=20TERM=0A18:11:17.410836=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:17.410993=20tramp-get-connection-property=20= (7)=20#=20chunksize=200=0A18:11:17.411154=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015909=20= 411093=200)=0A18:11:17.411301=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:17.411550=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:17.411771=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.613465=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.613647=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.613891=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:17.614173=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:17.614335=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:17.614465=20tramp-send-command=20(6)=20#=20EMACS=3Dt;=20= export=20EMACS=0A18:11:17.614596=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:17.614762=20tramp-get-connection-property=20= (7)=20#=20chunksize=200=0A18:11:17.614910=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015909=20= 614855=200)=0A18:11:17.615107=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:17.615288=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:17.615420=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.816509=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.816630=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:17.816748=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:17.816974=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:17.817151=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:17.817310=20tramp-send-command=20(6)=20#=20= INSIDE_EMACS=3D'24.1.50.1,tramp:2.2.6-pre';=20export=20INSIDE_EMACS=0A= 18:11:17.817463=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:17.817642=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:17.817821=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015909=20817751=200)=0A18:11:17.817982=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:17.818179=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:17.818317=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.019484=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.019615=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.019749=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:18.019940=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:18.020059=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:18.020178=20tramp-send-command=20(6)=20#=20PAGER=3D"";=20= export=20PAGER=0A18:11:18.020269=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:18.020374=20tramp-get-connection-property=20= (7)=20#=20chunksize=200=0A18:11:18.020483=20= tramp-set-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015910=20= 20442=200)=0A18:11:18.020582=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:18.020720=20tramp-get-connection-property=20= (7)=20#=20check-remote-echo=20nil=0A18:11:18.020820=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.222197=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.222483=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.222787=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:18.223203=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:18.223499=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:18.223742=20tramp-send-command=20(6)=20#=20unset=20correct=20= autocorrect=20MAILPATH=20MAILCHECK=20MAIL=20HISTORY=20CDPATH=0A= 18:11:18.223960=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:18.224225=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:18.224478=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015910=20224383=200)=0A18:11:18.224719=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:18.225071=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.225310=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.426586=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.426757=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.426945=20tramp-wait-for-regexp=20(6)=20#=20=0AMAILCHECK:=20= cannot=20unset=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:18.427750=20= tramp-maybe-open-connection=20(3)=20#=20Opening=20connection=20for=20a=20= using=20scpc...done=0A18:11:18.427922=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:18.428083=20= tramp-get-connection-property=20(7)=20#=20remote-echo=20nil=0A= 18:11:18.428208=20tramp-send-command=20(6)=20#=20test=20-e=20= /users/home/cabo/=202>/dev/null;=20echo=20tramp_exit_status=20$?=0A= 18:11:18.428349=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:18.428497=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:18.428657=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015910=20428598=200)=0A18:11:18.441956=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:18.442256=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.442379=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.743897=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.744137=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:18.744352=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:18.744630=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:18.744827=20tramp-send-command-and-check=20(1)=20#=20File=20error:=20= Couldn't=20find=20exit=20status=20of=20`test=20-e=20/users/home/cabo/'=0A= 18:11:18.746251=20tramp-get-connection-property=20(7)=20#=20~=20= /users/home/cabo=0A18:11:18.746922=20tramp-get-file-property=20(8)=20#=20= /users/home/cabo=20file-directory-p=20undef=0A18:11:18.747100=20= tramp-get-connection-property=20(7)=20#=20test=20test=0A18:11:18.747268=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:18.747405=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:18.747534=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:18.747688=20tramp-get-connection-property=20= (7)=20#=20last-cmd-time=20(20513=2015910=20428598=200)=0A18:11:18.747841=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:18.747993=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:18.748121=20tramp-send-command=20(6)=20#=20test=20-d=20= /users/home/cabo=202>/dev/null;=20echo=20tramp_exit_status=20$?=0A= 18:11:18.748248=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:18.748413=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:18.748555=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015910=20748503=200)=0A18:11:18.748680=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:18.748891=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:18.749022=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.049723=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.049849=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.049967=20tramp-wait-for-regexp=20(6)=20#=20=0Atramp_exit_status=20= 0=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:19.050149=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.050288=20tramp-set-file-property=20(8)=20#=20/users/home/cabo=20= file-directory-p=20t=0A18:11:19.102341=20tramp-get-connection-property=20= (7)=20#=20ls-dired=20nil=0A18:11:19.102504=20= tramp-sh-handle-insert-directory=20(4)=20#=20Inserting=20directory=20`ls=20= -al=20/scpc:a:/users/home/cabo/',=20wildcard=20no,=20fulldir=20yes=0A= 18:11:19.102546=20tramp-get-connection-property=20(7)=20#=20ls=20= /usr/xpg4/bin/ls=0A18:11:19.102604=20tramp-get-connection-property=20(7)=20= #=20process-name=20nil=0A18:11:19.102645=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:19.102694=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.102767=20tramp-get-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015910=20748503=200)=0A18:11:19.102844=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.102894=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:19.102937=20tramp-send-command=20(6)=20#=20/usr/xpg4/bin/ls=20= -al=20/users/home/cabo/.=202>/dev/null=0A18:11:19.102973=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.103031=20tramp-get-connection-property=20(7)=20#=20chunksize=20= 0=0A18:11:19.103129=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015911=20103076=200)=0A18:11:19.103208=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.103399=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.103488=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.404427=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.404491=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.404564=20tramp-wait-for-regexp=20(6)=20#=20=0Atotal=202363=0A= drwxr-x--x=20=2026=20cabo=20=20=20=20=20cabo=20=20=20=20=20=20=20=20=20=20= 42=20Aug=20=206=2009:28=20.=0Adrwxr-xr-x=20=2018=20root=20=20=20=20=20= sys=20=20=20=20=20=20=20=20=20=20=2018=20Jan=20=209=20=202011=20..=0A= -rw-------=20=20=201=20cabo=20=20=20=20=20cabo=20=20=20=20=20=20=2010222=20= Aug=20=206=2015:02=20.bash_history=0A-rw-r--r--=20=20=201=20cabo=20=20=20= =20=20cabo=20=20=20=20=20=20=20=201384=20Feb=2025=2022:08=20= .bash_profile=0A[[[...=20removed=20...]]]=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:19.404798=20= tramp-get-connection-property=20(7)=20#=20ls=20/usr/xpg4/bin/ls=0A= 18:11:19.407014=20tramp-get-file-property=20(8)=20#=20/users/home/cabo/=20= file-attributes-integer=20undef=0A18:11:19.407067=20= tramp-get-connection-property=20(7)=20#=20stat=20nil=0A18:11:19.407109=20= tramp-get-connection-property=20(7)=20#=20perl=20\perl=0A18:11:19.407149=20= tramp-do-file-attributes-with-perl=20(5)=20#=20file=20attributes=20with=20= perl:=20/users/home/cabo/=0A18:11:19.407197=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.407292=20tramp-get-connection-property=20(7)=20#=20scripts=20= nil=0A18:11:19.407362=20tramp-maybe-send-script=20(5)=20#=20Sending=20= script=20`tramp_perl_file_attributes'...=0A18:11:19.407409=20= tramp-get-connection-property=20(7)=20#=20perl=20\perl=0A18:11:19.407492=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.407537=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:19.407582=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:19.407635=20tramp-get-connection-property=20= (7)=20#=20last-cmd-time=20(20513=2015911=20103076=200)=0A18:11:19.407694=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.407744=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:19.407791=20tramp-send-command=20(6)=20#=20= tramp_perl_file_attributes=20()=20{=0A\perl=20-e=20'=0A@stat=20=3D=20= lstat($ARGV[0]);=0Aif=20(!@stat)=20{=0A=20=20=20=20print=20"nil\n";=0A=20= =20=20=20exit=200;=0A}=0Aif=20(($stat[2]=20&=200170000)=20=3D=3D=20= 0120000)=0A{=0A=20=20=20=20$type=20=3D=20readlink($ARGV[0]);=0A=20=20=20=20= $type=20=3D=20"\"$type\"";=0A}=0Aelsif=20(($stat[2]=20&=200170000)=20=3D=3D= =20040000)=0A{=0A=20=20=20=20$type=20=3D=20"t";=0A}=0Aelse=0A{=0A=20=20=20= =20$type=20=3D=20"nil"=0A};=0A$uid=20=3D=20($ARGV[1]=20eq=20"integer")=20= ?=20$stat[4]=20:=20"\""=20.=20getpwuid($stat[4])=20.=20"\"";=0A$gid=20=3D=20= ($ARGV[1]=20eq=20"integer")=20?=20$stat[5]=20:=20"\""=20.=20= getgrgid($stat[5])=20.=20"\"";=0Aprintf(=0A=20=20=20=20"(%s=20%u=20%s=20= %s=20(%u=20%u)=20(%u=20%u)=20(%u=20%u)=20%u.0=20%u=20t=20(%u=20.=20%u)=20= -1)\n",=0A=20=20=20=20$type,=0A=20=20=20=20$stat[3],=0A=20=20=20=20$uid,=0A= =20=20=20=20$gid,=0A=20=20=20=20$stat[8]=20>>=2016=20&=200xffff,=0A=20=20= =20=20$stat[8]=20&=200xffff,=0A=20=20=20=20$stat[9]=20>>=2016=20&=20= 0xffff,=0A=20=20=20=20$stat[9]=20&=200xffff,=0A=20=20=20=20$stat[10]=20= >>=2016=20&=200xffff,=0A=20=20=20=20$stat[10]=20&=200xffff,=0A=20=20=20=20= $stat[7],=0A=20=20=20=20$stat[2],=0A=20=20=20=20$stat[1]=20>>=2016=20&=20= 0xffff,=0A=20=20=20=20$stat[1]=20&=200xffff=0A);'=20"$1"=20"$2"=20= 2>/dev/null=0A}=202>/dev/null;=20echo=20tramp_exit_status=20$?=0A= 18:11:19.407904=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:19.407953=20tramp-get-connection-property=20(7)=20#=20= chunksize=200=0A18:11:19.408004=20tramp-set-connection-property=20(7)=20= #=20last-cmd-time=20(20513=2015911=20407978=200)=0A18:11:19.408061=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.408352=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.408420=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.609605=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.609686=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:19.609761=20tramp-wait-for-regexp=20(6)=20#=20=0Atramp_exit_status=20= 0=0A///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:19.609872=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.609941=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:19.610001=20tramp-set-connection-property=20(7)=20#=20= scripts=20(tramp_perl_file_attributes)=0A18:11:19.610063=20= tramp-maybe-send-script=20(5)=20#=20Sending=20script=20= `tramp_perl_file_attributes'...done=0A18:11:19.610145=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.610191=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:19.610236=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:19.610296=20tramp-get-connection-property=20= (7)=20#=20last-cmd-time=20(20513=2015911=20407978=200)=0A18:11:19.610361=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.610412=20tramp-get-connection-property=20(7)=20#=20remote-echo=20= nil=0A18:11:19.610447=20tramp-send-command=20(6)=20#=20= tramp_perl_file_attributes=20/users/home/cabo/=20integer=202>/dev/null;=20= echo=20tramp_exit_status=20$?=0A18:11:19.610483=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:19.610542=20tramp-get-connection-property=20(7)=20#=20chunksize=20= 0=0A18:11:19.610607=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015911=20610580=200)=0A18:11:19.610661=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:19.610780=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:19.610829=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:20.012299=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:20.012432=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:20.012582=20tramp-wait-for-regexp=20(6)=20#=20=0A(t=2026=201003=20= 1003=20(18327=2051533)=20(20511=2036416)=20(20511=2036416)=2042.0=20= 16873=20t=20(0=20.=203)=20-1)=0Atramp_exit_status=200=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:20.012797=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:20.012907=20tramp-get-connection-property=20(7)=20#=20= process-buffer=20nil=0A18:11:20.013108=20tramp-get-connection-property=20= (7)=20#=20gid-integer=201003=0A18:11:20.013221=20= tramp-get-connection-property=20(7)=20#=20process-name=20nil=0A= 18:11:20.013375=20tramp-get-connection-property=20(7)=20#=20device=20= undef=0A18:11:20.013521=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:20.013674=20tramp-set-connection-property=20= (7)=20#=20device=20(-1=20.=201)=0A18:11:20.013846=20= tramp-set-file-property=20(8)=20#=20/users/home/cabo/=20= file-attributes-integer=20(t=2026=201003=201003=20(18327=2051533)=20= (20511=2036416)=20(20511=2036416)=2042=20drwxr-x--x=20nil=20(0=20.=203)=20= (-1=20.=201))=0A18:11:22.607828=20tramp-get-file-property=20(8)=20#=20= /users/home/cabo/.bash_history=20file-exists-p=20undef=0A18:11:22.608008=20= tramp-get-file-property=20(8)=20#=20/users/home/cabo/.bash_history=20= file-attributes-integer=20nil=0A18:11:22.608157=20= tramp-get-file-property=20(8)=20#=20/users/home/cabo/.bash_history=20= file-attributes-string=20nil=0A18:11:22.608292=20= tramp-get-connection-property=20(7)=20#=20file-exists=20test=20-e=0A= 18:11:22.608466=20tramp-get-connection-property=20(7)=20#=20process-name=20= nil=0A18:11:22.608602=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:22.608738=20tramp-get-connection-property=20= (7)=20#=20process-buffer=20nil=0A18:11:22.608897=20= tramp-get-connection-property=20(7)=20#=20last-cmd-time=20(20513=2015911=20= 610580=200)=0A18:11:22.609049=20tramp-get-connection-property=20(7)=20#=20= process-name=20nil=0A18:11:22.609202=20tramp-get-connection-property=20= (7)=20#=20remote-echo=20nil=0A18:11:22.609331=20tramp-send-command=20(6)=20= #=20test=20-e=20/users/home/cabo/.bash_history=202>/dev/null;=20echo=20= tramp_exit_status=20$?=0A18:11:22.609464=20tramp-get-connection-property=20= (7)=20#=20process-name=20nil=0A18:11:22.609607=20= tramp-get-connection-property=20(7)=20#=20chunksize=200=0A= 18:11:22.609821=20tramp-set-connection-property=20(7)=20#=20= last-cmd-time=20(20513=2015914=20609766=200)=0A18:11:22.609963=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:22.610182=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:22.610328=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:22.812141=20tramp-get-connection-property=20(7)=20#=20= check-remote-echo=20nil=0A18:11:22.812608=20= tramp-get-connection-property=20(7)=20#=20check-remote-echo=20nil=0A= 18:11:22.813048=20tramp-wait-for-regexp=20(6)=20#=20=0A= ///ab48b5bc1602ca2e901f81dbbf8bea28#$=0A18:11:22.813587=20= tramp-get-connection-property=20(7)=20#=20process-buffer=20nil=0A= 18:11:22.813758=20tramp-send-command-and-check=20(1)=20#=20File=20error:=20= Couldn't=20find=20exit=20status=20of=20`test=20-e=20= /users/home/cabo/.bash_history'=0A= --Apple-Mail=_E6735633-0660-4E59-A61B-33E29C93B3C2-- From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 08 02:55:53 2012 Received: (at 12148) by debbugs.gnu.org; 8 Aug 2012 06:55:53 +0000 Received: from localhost ([127.0.0.1]:40953 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sz0BM-0003Y8-9o for submit@debbugs.gnu.org; Wed, 08 Aug 2012 02:55:53 -0400 Received: from mailout-de.gmx.net ([213.165.64.23]:55183) by debbugs.gnu.org with smtp (Exim 4.72) (envelope-from ) id 1Sz0BJ-0003Y0-8L for 12148@debbugs.gnu.org; Wed, 08 Aug 2012 02:55:50 -0400 Received: (qmail invoked by alias); 08 Aug 2012 06:47:43 -0000 Received: from p57BB95AA.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.149.170] by mail.gmx.net (mp071) with SMTP; 08 Aug 2012 08:47:43 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX19mEO1Z+ldmdGwtYJA0mWnCyx9a5w0GEUOy55Q3VR qfMTFGXVdk8svg From: Michael Albinus To: Carsten Bormann Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> <87ehnjaxvb.fsf@gmx.de> <5334FB1F-2455-4513-9B42-4DB7175FD71E@tzi.org> Date: Wed, 08 Aug 2012 08:47:38 +0200 Message-ID: <87lihpop6d.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Y-GMX-Trusted: 0 X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12148 Cc: 12148@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Carsten Bormann writes: Hi Carsten, > Again, the problem is that test -e suppresses the rest of the command > line in /bin/sh on Solaris, so the first "test -e" fails right away, > but is somehow recovered using another attempt that uses test -d. The > attempt to find-file (open) .bash_history then completely fails on > what seems to be the same kind of "test -e" (hmm, why didn't it do > that in my previous tests before I wrote the tramp file). I've hardened the test a little bit. Could you, please, check whether this works (clean the cache first): --8<---------------cut here---------------start------------->8--- *** ~/src/tramp/lisp/tramp-sh.el.~2.77~ 2012-08-08 08:40:59.692792871 +0200 --- ~/src/tramp/lisp/tramp-sh.el 2012-08-08 08:40:33.696337454 +0200 *************** *** 3559,3584 **** ;; `/usr/bin/test'. ;; `/usr/bin/test -e' In case `/bin/test' does not exist. (unless (or ! (and (setq result (format "%s -e" (tramp-get-test-command ve= c))) ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent)))) ! (and (setq result "/bin/test -e") ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent)))) ! (and (setq result "/usr/bin/test -e") ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent)))) ! (and (setq result (format "%s -d" (tramp-get-ls-command vec)= )) ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent))))) (tramp-error vec 'file-error "Couldn't find command to check if file exists")) result)) --- 3559,3588 ---- ;; `/usr/bin/test'. ;; `/usr/bin/test -e' In case `/bin/test' does not exist. (unless (or ! (ignore-errors ! (and (setq result (format "%s -e" (tramp-get-test-command vec))) ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent))))) ! (ignore-errors ! (and (setq result "/bin/test -e") ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent))))) ! (ignore-errors ! (and (setq result "/usr/bin/test -e") ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent))))) ! (ignore-errors ! (and (setq result (format "%s -d" (tramp-get-ls-command vec))) ! (tramp-send-command-and-check ! vec (format "%s %s" result existing)) ! (not (tramp-send-command-and-check ! vec (format "%s %s" result nonexistent)))))) (tramp-error vec 'file-error "Couldn't find command to check if file exists")) result)) --8<---------------cut here---------------end--------------->8--- > Gr=C3=BC=C3=9Fe, Carsten Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 08 03:43:22 2012 Received: (at 12148) by debbugs.gnu.org; 8 Aug 2012 07:43:22 +0000 Received: from localhost ([127.0.0.1]:40995 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sz0vJ-0004dq-BU for submit@debbugs.gnu.org; Wed, 08 Aug 2012 03:43:21 -0400 Received: from mailhost.informatik.uni-bremen.de ([134.102.201.18]:55694 helo=informatik.uni-bremen.de) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sz0vF-0004df-SN for 12148@debbugs.gnu.org; Wed, 08 Aug 2012 03:43:19 -0400 X-Virus-Scanned: amavisd-new at informatik.uni-bremen.de Received: from smtp-fb3.informatik.uni-bremen.de (smtp-fb3.informatik.uni-bremen.de [134.102.224.120]) by informatik.uni-bremen.de (8.14.3/8.14.3) with ESMTP id q787Z7fN007890; Wed, 8 Aug 2012 09:35:07 +0200 (CEST) Received: from [192.168.217.105] (p54892932.dip.t-dialin.net [84.137.41.50]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by smtp-fb3.informatik.uni-bremen.de (Postfix) with ESMTPSA id 773BE56; Wed, 8 Aug 2012 09:35:06 +0200 (CEST) Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) Mime-Version: 1.0 (Mac OS X Mail 6.0 \(1485\)) Content-Type: text/plain; charset=iso-8859-1 From: Carsten Bormann In-Reply-To: <87lihpop6d.fsf@gmx.de> Date: Wed, 8 Aug 2012 09:35:04 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: <623E6779-A1A4-460E-BB68-42C49D6094D5@tzi.org> References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> <87ehnjaxvb.fsf@gmx.de> <5334FB1F-2455-4513-9B42-4DB7175FD71E@tzi.org> <87lihpop6d.fsf@gmx.de> To: Michael Albinus X-Mailer: Apple Mail (2.1485) X-Spam-Score: -4.2 (----) X-Debbugs-Envelope-To: 12148 Cc: 12148@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.2 (----) On Aug 8, 2012, at 08:47, Michael Albinus = wrote: > I've hardened the test a little bit. Could you, please, check whether > this works (clean the cache first): Thanks. I hope I did this cache-cleaning right by just calling = tramp-cleanup-all-connections. Now, the first find-file (to a directory) leads to an empty buffer (but = only in 2 out of 3 attempts? No idea what I did different.) or just = hangs. Doing that again (after a quit in case of the hang) appears to work = properly, as does editing a file. When I first tried this, an equivalent to ("file-exists" "test -e") = was not recorded at all, see below. On another attempt it does get recorded (see second ~/.emacs.d/tramp = below). In the latter case, we then run into the same problem (byte-code: = Couldn't find exit status of `test -e /users/home/cabo/.bash_history') = with the second incarnation of emacs. I'm afraid this one didn't quite work out. Also I'd love to know why this appears to be less than deterministic. Gr=FC=DFe, Carsten ;; -*- emacs-lisp -*- <12/08/08 09:14:43 /Users/cabo/.emacs.d/tramp> ;; Tramp connection history. Don't change this file. ;; You can delete it, forcing Tramp to reapply the checks. ((["scpc" nil "a" nil nil] ("uname" "SunOS 5.11") ("test" "test") ("remote-path" ("/usr/xpg4/bin" "/usr/ccs/bin" "/usr/bin" "/bin" "/usr/sbin" = "/usr/local/bin")) ("busybox" nil) ("remote-shell" "/usr/bin/bash") ("stat" nil) ("perl-file-spec" t) ("perl-cwd-realpath" t) ("perl" "\\perl") ("id" "/usr/xpg4/bin/id") ("gid-integer" 1003))) ;; -*- emacs-lisp -*- <12/08/08 09:26:01 /Users/cabo/.emacs.d/tramp> ;; Tramp connection history. Don't change this file. ;; You can delete it, forcing Tramp to reapply the checks. ((["scpc" nil "a" nil nil] ("uname" "SunOS 5.11") ("test" "test") ("remote-path" ("/usr/xpg4/bin" "/usr/ccs/bin" "/usr/bin" "/bin" "/usr/sbin" = "/usr/local/bin")) ("busybox" nil) ("remote-shell" "/usr/bin/bash") ("~" "/users/home/cabo") ("ls" "/usr/xpg4/bin/ls") ("ls-dired" nil) ("stat" nil) ("perl-file-spec" t) ("perl-cwd-realpath" t) ("perl" "\\perl") ("id" "/usr/xpg4/bin/id") ("gid-integer" 1003) ("file-exists" "test -e") ("readlink" nil))) From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 08 03:59:27 2012 Received: (at 12148) by debbugs.gnu.org; 8 Aug 2012 07:59:27 +0000 Received: from localhost ([127.0.0.1]:41018 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sz1As-0005qb-N3 for submit@debbugs.gnu.org; Wed, 08 Aug 2012 03:59:27 -0400 Received: from mailout-de.gmx.net ([213.165.64.23]:43932) by debbugs.gnu.org with smtp (Exim 4.72) (envelope-from ) id 1Sz1Aq-0005qS-CF for 12148@debbugs.gnu.org; Wed, 08 Aug 2012 03:59:25 -0400 Received: (qmail invoked by alias); 08 Aug 2012 07:51:20 -0000 Received: from p57BB95AA.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.149.170] by mail.gmx.net (mp033) with SMTP; 08 Aug 2012 09:51:20 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX18o12Y2t/4oR8ExIFj7Phh/Ub9FjnGQatEZ1v1jNr LeMzGM5x/d1OvC From: Michael Albinus To: Carsten Bormann Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> <87ehnjaxvb.fsf@gmx.de> <5334FB1F-2455-4513-9B42-4DB7175FD71E@tzi.org> <87lihpop6d.fsf@gmx.de> <623E6779-A1A4-460E-BB68-42C49D6094D5@tzi.org> Date: Wed, 08 Aug 2012 09:51:14 +0200 In-Reply-To: <623E6779-A1A4-460E-BB68-42C49D6094D5@tzi.org> (Carsten Bormann's message of "Wed, 8 Aug 2012 09:35:04 +0200") Message-ID: <87fw7xom8d.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Y-GMX-Trusted: 0 X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12148 Cc: 12148@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Carsten Bormann writes: Hi Carsten, > I hope I did this cache-cleaning right by just calling tramp-cleanup-all-= connections. It should do the job. However, in order to be on the safe side, please stop Emacs, remove ~/.emacs.d/tramp, and restart Emacs. > I'm afraid this one didn't quite work out. > Also I'd love to know why this appears to be less than deterministic. Strange. During my local tests of this patch, I did obfuscate the first check in `tramp-find-file-exists-command', in order to provoke a syntax error. It works fine here. Please rerun the test from the beginning. And I need the debug buffer, also from the beginning of the test, with `tramp-verbose' set to 9. > Gr=C3=BC=C3=9Fe, Carsten Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 08 09:54:05 2012 Received: (at 12148-done) by debbugs.gnu.org; 8 Aug 2012 13:54:05 +0000 Received: from localhost ([127.0.0.1]:41693 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sz6i4-0006gI-TR for submit@debbugs.gnu.org; Wed, 08 Aug 2012 09:54:05 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:43973) by debbugs.gnu.org with smtp (Exim 4.72) (envelope-from ) id 1Sz6i2-0006fr-Hl for 12148-done@debbugs.gnu.org; Wed, 08 Aug 2012 09:54:03 -0400 Received: (qmail invoked by alias); 08 Aug 2012 13:45:56 -0000 Received: from p57BB95AA.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.149.170] by mail.gmx.net (mp038) with SMTP; 08 Aug 2012 15:45:56 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX18YOT4Ig1EYGadXnR0LkL/qX+x5iO41ICW7dvb5TC W1kOx7LiPCW/Zl From: Michael Albinus To: Carsten Bormann Subject: Re: bug#12148: 24.1.50; Tramp has problems with Solaris server (test -e) References: <2318D1E1-B7AD-4160-A10F-04666C5385C2@tzi.org> <87ehnjaxvb.fsf@gmx.de> <5334FB1F-2455-4513-9B42-4DB7175FD71E@tzi.org> <87lihpop6d.fsf@gmx.de> <623E6779-A1A4-460E-BB68-42C49D6094D5@tzi.org> <87fw7xom8d.fsf@gmx.de> Date: Wed, 08 Aug 2012 15:45:50 +0200 In-Reply-To: <87fw7xom8d.fsf@gmx.de> (Michael Albinus's message of "Wed, 08 Aug 2012 09:51:14 +0200") Message-ID: <87a9y58pkh.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Y-GMX-Trusted: 0 X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12148-done Cc: 12148-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Michael Albinus writes: > Please rerun the test from the beginning. And I need the debug buffer, > also from the beginning of the test, with `tramp-verbose' set to 9. A modified version of the published patch solves the problem, as confirmed by Carsten off-list. Patch committed, closing the bug. Best regards, Michael. From unknown Tue Sep 09 13:16:29 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 06 Sep 2012 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator