ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Eugene Azarkin <admin@ligalomb.ru>
To: ALT Linux Community <community@lists.altlinux.org>
Subject: [Comm] Запустить команду cat как сервис?
Date: Thu, 20 Sep 2007 14:30:27 +0400
Message-ID: <46F24BC3.30400@ligalomb.ru> (raw)

Доброе время суток.

Для записи логов из АТС Panasonic использую команду
cat /dev/ttyS1 >> /home/andy/ats/ats &

Хочется что бы команда работала как сервис, т.е. запускалась
автоматически при запуске сервера.

создал в /etc/init.d скрипт ats по аналогии с template , и не пойму
почему , service ats start останавливается и завершить ее можно  только
по CTRL+C
Как правильно писать такой скрипт ?

#!/bin/sh
# ATS   Startup script logging ATS PAnasonic.
# chkconfig:    345 75 25
# Do not load RH compatibility interface.
WITHOUT_RC_COMPAT=1

# Source function library.
. /etc/init.d/functions
PIDFILE=/var/run/ats.pid
LOCKFILE=/var/lock/subsys/ats
RETVAL=0
start()
{
        args="/dev/ttyS1 >> /home/andy/ats/ats &"
       start_daemon --pidfile "$PIDFILE" --lockfile "$LOCKFILE"
--expect-user root -- /usr/bin/cat $args
        RETVAL=$?
        return $RETVAL
}
stop()
{
        killall cat
        stop_daemon --pidfile "$PIDFILE" --lockfile "$LOCKFILE"
--expect-user root  -- /usr/bin/cat
        RETVAL=$?
        return $RETVAL
}

restart()
{
        stop
        start
}


# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  reload)
        reload
        ;;
  restart)
        restart
        ;;
  status)
        status --pidfile "$PIDFILE" --expect-user andy -- ats
        RETVAL=$?
        ;;
  *)
        msg_usage "${0##*/} {start|stop|restart|status}"
        RETVAL=1




             reply	other threads:[~2007-09-20 10:30 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-20 10:30 Eugene Azarkin [this message]
2007-09-20 11:23 ` ABATAPA
2007-09-20 12:03   ` Eugene Azarkin
2007-09-20 13:59     ` ABATAPA
2007-09-21  7:58       ` Eugene Azarkin
2007-09-20 11:31 ` Slava Dubrovskiy
2007-09-20 12:07   ` Eugene Azarkin
2007-09-20 12:20     ` Slava Dubrovskiy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=46F24BC3.30400@ligalomb.ru \
    --to=admin@ligalomb.ru \
    --cc=community@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git