[COMM] кошерный запуск процесса
Alexey Morsov
=?iso-8859-1?q?samurai_=CE=C1_ricom=2Eru?=
Вт Фев 15 16:13:13 MSK 2005
И снова про коШшшерный запуск процесса %-)
кто-нибудь может объяснить почему имея
[root на test init.d]# cat mailsender
#!/bin/sh
#
# mailsender start and stop mailsender process
#
# chkconfig: 345 90 10
#
# description: mailsender is to send alerts via email
#
# processname: mailsender
# pidfile: /var/run/mailsender.pid
#
# Source function library.
. /etc/init.d/functions
LOCKFILE=/var/lock/subsys/mailsender
PIDFILE=/var/run/mailsender.pid
RETVAL=0
start() {
# is_yes "$NETWORKING" || return 0
start_daemon --pidfile "$PIDFILE" --lockfile "$LOCKFILE"
--expect-user webmaster -- mailsender -d
RETVAL=$?
return $RETVAL
}
stop() {
stop_daemon --pidfile "$PIDFILE" --lockfile "$LOCKFILE"
--expect-user webmaster mailsender
RETVAL=$?
return $RETVAL
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
status)
status --pidfile "$PIDFILE" --expect-user webmaster mailsender
RETVAL=$?
;;
*)
msg_usage "${0##*/} {start|stop|restart|status}"
RETVAL=1
esac
exit $RETVAL
(фактически скопировал с cyrus-imapd)
далее, имеем следующее безобразие:
[root на test init.d]# service mailsender status
mailsender is stopped
[root на test init.d]# service mailsender start
Starting mailsender service:
[ DONE ]
[root на test init.d]# ps aux|grep mailsender
root 7867 0.0 0.2 2056 540 pts/0 S 14:15 0:00
/usr/local/bin/mailsender -d
[root на test init.d]# service mailsender status
mailsender is dead, but subsystem is locked
[root на test init.d]# ps aux|grep mailsender
root 7867 0.0 0.3 2104 776 pts/0 S 14:15 0:00
/usr/local/bin/mailsender -d
[root на test init.d]# service mailsender stop
Service mailsender is not running.
[PASSED]
[root на test init.d]# ps aux|grep mailsender
root 7867 0.0 0.3 2104 776 pts/0 S 14:15 0:00
/usr/local/bin/mailsender -d
[root на test init.d]# ls -l /var/run/|grep mail
drwxrwxr-x 2 root mail 4096 Feb 14 17:39 amavis
drwxrwsr-t 2 root mail 4096 Feb 14 17:39 clamav
drwxr-x--x 2 mailgraph root 4096 Feb 14 17:39 mailgraph
[root на test init.d]# ls -l /var/lock/subsys/|grep mail
[root на test init.d]# kill 7867
[root на test init.d]# ps aux|grep mailsender
:(
--
Всего наилучшего,
Системный Администратор ЗАО "ИК "РИКОМ-ТРАСТ"
Алексей Морсов
ICQ: 196766290
Jabber: Samurai на jabber.pibhe.com
http://www.ricom.ru
http://www.fondmarket.ru
Подробная информация о списке рассылки community