From owner-freebsd-questions@FreeBSD.ORG Tue Sep 28 03:09:59 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 690A716A4CE for ; Tue, 28 Sep 2004 03:09:59 +0000 (GMT) Received: from f05n03.cac.psu.edu (f05s03.cac.psu.edu [128.118.141.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFD9143D48 for ; Tue, 28 Sep 2004 03:09:58 +0000 (GMT) (envelope-from tom@psu.edu) Received: from tmm324.rh.psu.edu (TMM324.rh.psu.edu [66.71.101.5]) by f05n03.cac.psu.edu (8.12.11/8.12.11) with ESMTP id i8S39veJ115596 for ; Mon, 27 Sep 2004 23:09:57 -0400 Date: Mon, 27 Sep 2004 23:09:59 -0500 (EST) From: Thomas Moyer X-X-Sender: tom@tmm324.rh.psu.edu To: freebsd-questions@freebsd.org Message-ID: <20040927230412.W736@tmm324.rh.psu.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new Subject: Problems with USB Detach X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 03:09:59 -0000 I have a USB Sony Clie PEG-SJ20 which I have gotten to Sync with jpilot. However the processes that are run when the Clie is attached continue to run even after the Clie is detached. The processes are spawned from usbd.conf with the attach option and should be killed by the detach options. None of the processes are killed though. I'm running FreeBSD 5.2.1 Any thoughts? Following is the usbd.conf and other pertinent files. # Sony Clie (PDA) device "Sony Clie" devname "ucom0" vendor 0x054c product 0x0066 release 0x0100 # pilot-link attach "/usr/sbin/ppp -auto palm; /usr/local/bin/pi-csd -H tmm324 -a 66.71.101.5 -n 255.255.255.0&" detach "/usr/local/bin/pi-detach" pi-detach is a shell script containing: #!/bin/sh /usr/bin/killall ppp /usr/bin/killall pi-csd Thomas Moyer tmm324@psu.edu DracoYung