summaryrefslogtreecommitdiff
path: root/media-video/motion/files/motion.initd-r5
blob: 315bda6c2e7ff029504e1d71030b95933c21a755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

: ${MOTION_USER:="motion"}
: ${MOTION_GROUP:="motion"}

[ "${MOTION_UMASK}" ] && umask="${MOTION_UMASK}"
[ "${MOTION_CONFIGFILE}" ] && command_args="-c ${MOTION_CONFIGFILE}"
[ "${MOTION_LOGFILE}" ] && command_args="${command_args} -l ${MOTION_LOGFILE}"
[ "${MOTION_LOGTYPE}" ] && command_args="${command_args} -k ${MOTION_LOGTYPE}"
[ "${MOTION_LOGLEVEL}" ] && command_args="${command_args} -d ${MOTION_LOGLEVEL}"

command=/usr/bin/motion
command_user="${MOTION_USER}:${MOTION_GROUP}"

start_pre() {
  if [ "${MOTION_DIR}" ] ; then
    checkpath -d -o "${MOTION_USER}":"${MOTION_GROUP}" "${MOTION_DIR}"
    directory="${MOTION_DIR}"
  fi
  if [ "${MOTION_LOGFILE}" ] ; then
    checkpath -f -o "${MOTION_USER}":"${MOTION_GROUP}" "${MOTION_LOGFILE}"
  fi
  if [ "${MOTION_PIDFILE}" ] ; then
    pidfile="${MOTION_PIDFILE}"
    command_background=true
  else
    supervisor=supervise-daemon
  fi
}

depend() {
  need localmount
  after bootmisc
  use mysql postgresq
}