[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:04605] ppp - offが効きません。
- From: "長田誠司" <kjarval@xxxxxxxxxxxxxxxxx>
- Subject: [debian-users:04605] ppp - offが効きません。
- Date: Wed, 4 Mar 1998 09:03:42 +0900
- X-mimeole: Produced By Microsoft MimeOLE V4.71.1712.3
- X-ml-info: If you have a question, send a mail with the body "# help" (without quotes) to the address debian-users-ctl@debian.or.jp
- X-ml-name: debian-users
- X-mlserver: fml [fml 2.1A#45]; post only from members
- X-msmail-priority: Normal
- X-priority: 3
- Message-id: <01bd4700$d4fc0460$LocalHost@simir1b9>
- X-mail-count: 04605
- X-mailer: Microsoft Outlook Express 4.71.1712.3
長田@東工大と申します。
ppp-offを実行すると、
if: EXPRESSION SYNTAX
と表示され、何も起こりません。
なぜでしょうか?
ppp-offの内容は、
#!/bin/sh
if [ "$1" = "" ]; then
DEVICE=ppp0
else
DEVICE=$1
fi
if [ -r /var/run/$DEVICE.pid ]; then
kill -INT `cat /var/run/$DEVICE.pid`
if [ ! "$?" = "0" ]; then
rm -f /var/run/$DEVICE.pid
echo "ERROR: Removed stale pid file"
exit 1
fi
echo "PPP link to $DEVICE terminated."
exit 0
fi
echo "ERROR: PPP link is not active on $DEVICE"
exit 1
です。