ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Запустить команду cat как сервис?
@ 2007-09-20 10:30 Eugene Azarkin
  2007-09-20 11:23 ` ABATAPA
  2007-09-20 11:31 ` Slava Dubrovskiy
  0 siblings, 2 replies; 8+ messages in thread
From: Eugene Azarkin @ 2007-09-20 10:30 UTC (permalink / raw)
  To: ALT Linux Community

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

Для записи логов из АТС 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




^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-09-21  7:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-20 10:30 [Comm] Запустить команду cat как сервис? Eugene Azarkin
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

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