devel@ where you _can_ ask
 help / color / mirror / Atom feed
* [newbies] Скрипт инициализации SysV
@ 2022-01-21 18:50 Евгений
  0 siblings, 0 replies; only message in thread
From: Евгений @ 2022-01-21 18:50 UTC (permalink / raw)
  To: devel-newbies

Здравствуйте.
Написал скрипт инициализации, кто хорошо разбирается посмотрите верно ли 
он написан.
Тестировал его на regular-icewm-sysv работает.

#!/bin/sh
#
# Initialization file for the radeon-profile daemon.
#
# chkconfig: - 90 10
# description:  A system daemon for reading Radeon GPU clock speed and 
voltage information.
# processname: radeon-profile-daemon
# pidfile: /var/run/radeon-profile-daemon.pid
#
### BEGIN INIT INFO
# Provides:          radeon-profile-daemon
# Required-Start:    $local_fs $syslog
# Required-Stop:     $local_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Service for radeon-profile
# Description:       ATI Radeon GPU Parameter Monitoring Service
### END INIT INFO
#
# Do not load RH compatibility interface.
WITHOUT_RC_COMPAT=1

# Source function library.
. /etc/rc.d/init.d/functions

PIDFILE=/var/run/radeon-profile-daemon.pid
LOCKFILE=/var/lock/subsys/radeon-profile-daemon
RETVAL=0

start()
{
     start_daemon --make-pidfile --pidfile "$PIDFILE" --lockfile 
"$LOCKFILE" --expect-user root -- radeon-profile-daemon
     RETVAL=$?
     return $RETVAL
}

stop()
{
     stop_daemon --pidfile "$PIDFILE" --lockfile "$LOCKFILE" 
--expect-user root -- radeon-profile-daemon
     RETVAL=$?
     return $RETVAL
}

restart()
{
     stop
     start
}

# See how we were called.
case "$1" in
     start)
         start
         ;;
     stop)
         stop
         ;;
     reload|restart)
         restart
         ;;
     condstop)
         if [ -e "$LOCKFILE" ]; then
             stop
         fi
         ;;
     condreload|condrestart)
         if [ -e "$LOCKFILE" ]; then
             restart
         fi
         ;;
     status)
         status --pidfile "$PIDFILE" --expect-user root -- 
radeon-profile-daemon
         RETVAL=$?
         ;;
     *)
         msg_usage "${0##*/} 
{start|stop|reload|restart|condstop|condrestart|condreload|status}"
         RETVAL=1
esac

exit $RETVAL




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-21 18:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 18:50 [newbies] Скрипт инициализации SysV Евгений

devel@ where you _can_ ask

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel-newbies/0 devel-newbies/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 devel-newbies devel-newbies/ http://lore.altlinux.org/devel-newbies \
		devel-newbies@lists.altlinux.org devel-newbies@lists.altlinux.ru devel-newbies@lists.altlinux.com
	public-inbox-index devel-newbies

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


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