[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:41669] 起動停止スクリプトについて
- From: <hab47260@xxxxxxxxxxxxx>
- Subject: [debian-users:41669] 起動停止スクリプトについて
- Date: Thu, 14 Oct 2004 15:12:42 +0900
- List-help: <mailto:debian-users-ctl@debian.or.jp?body=help>
- List-id: debian-users.debian.or.jp
- List-owner: <mailto:debian-users-admin@debian.or.jp>
- List-post: <mailto:debian-users@debian.or.jp>
- List-software: fml [fml 4.0.3 release (20011202/4.0.3)]
- List-unsubscribe: <mailto:debian-users-ctl@debian.or.jp?body=unsubscribe>
- X-ml-info: If you have a question, send e-mail with the body "help" (without quotes) to the address debian-users-ctl@debian.or.jp; help=<mailto:debian-users-ctl@debian.or.jp?body=help>
- X-ml-name: debian-users
- X-mlserver: fml [fml 4.0.3 release (20011202/4.0.3)]; post only (only members can post)
- X-original-to: debian-users@debian.or.jp
- X-spam-level: *****
- X-spam-status: No, hits=5.7 required=10.0 tests=FROM_ENDS_IN_NUMS,ISO2022JP_BODY,ISO2022JP_CHARSET, NO_REAL_NAME,RCVD_IN_ORBS,RCVD_IN_OSIRUSOFT_COM, SPAM_PHRASE_00_01,X_OSIRU_OPEN_RELAY version=2.44
- Message-id: <20041014061239625.TUYC.426371.t-mta7.odn.ne.jp@xxxxxxxxxxxxxx>
- X-mail-count: 41669
- X-mailer: EdMax Ver2.85.5F
スズキ@宮城です
SSHではお世話になりました
また、質問で申し訳ないですが、よろしくお願いします
DEBIAN流の起動、停止スクリプトに挑戦したのですが
どうもうまくいきません
下記は自作したスクリプトです
noipというプログラムを動かそうとしています
cat /etc/init.d/noip
#!/bin/sh
case "$1" in
start)
start-stop-daemon --start --quiet --pidfile /var/run/noip.pid \
--exec /usr/local/bin/noip
;;
stop)
start-stop-daemon --stop --quiet \
--pidfile /var/run/noip.pid --exec /usr/local/bin/noip
;;
*)
echo "Usage: /etc/init.d/noip {start|stop}" >&2
exit 1
;;
esac
exit 0
1./etc/init.d/noip start 起動します
2./etc/init.d/noip stop 停止しません?
3.どうも start時 pidfile を /var/run/noip.pid と指定しているのですが
作ってくれないのが原因のようです
どうしたらpidfileを作ってくれるのでしょうか?
(無理やりviで作っても更新してくれませんでした)