[arch-commits] Commit in mythtv/trunk (mythbackend.conf mythbackend.rc)

Jonathan Conder jconder at nymeria.archlinux.org
Sun Feb 24 03:57:26 UTC 2013


    Date: Sunday, February 24, 2013 @ 04:57:26
  Author: jconder
Revision: 84749

remove initscripts

Deleted:
  mythtv/trunk/mythbackend.conf
  mythtv/trunk/mythbackend.rc

------------------+
 mythbackend.conf |   53 --------------------------------------
 mythbackend.rc   |   73 -----------------------------------------------------
 2 files changed, 126 deletions(-)

Deleted: mythbackend.conf
===================================================================
--- mythbackend.conf	2013-02-24 03:36:38 UTC (rev 84748)
+++ mythbackend.conf	2013-02-24 03:57:26 UTC (rev 84749)
@@ -1,53 +0,0 @@
-#
-# Copyright (c) by the MythTV Development Team.
-#
-# Derived from work by:
-#
-#     Michael Thomson <linux at m-thomson dot net>
-#     Stu Tomlinson <stu at nosnilmot dot com>
-#     Axel Thimm <axel.thimm at atrpms dot net>
-# Adopted for ArchLinux:
-#     Jürgen Hoetzel <juergen at archinux.org>
-#
-#  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 2 of the License, or
-#  (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-###############################################################################
-#
-# User who should start the mythbackend process
-#
-# Running mythbackend as non-root requires you to ensure that audio/video
-# devices used for recording have suitable user permissions. One way
-# to achieve this is to modify existing or create new udev rules which
-# assign these devices to a non-root group with rw permissions and add
-# your mythbackend user to that group. Be aware that console.perms can 
-# also affect device permissions and may need additional configuration.
-# Running as non-root may also introduce increased process latency.
-#
-# MBE_USER='root'
-
-#
-# Startup options for mythbackend (see 'mythbackend --help' for a list).
-#
-# MBE_OPTS=''
-
-#
-# Directory holding the mythbackend log file
-#
-# LOG_PATH='/var/log/mythtv'
-
-#
-# Logging options for mythbackend (see 'mythbackend -v help' for a list)
-#
-# LOG_OPTS=''

Deleted: mythbackend.rc
===================================================================
--- mythbackend.rc	2013-02-24 03:36:38 UTC (rev 84748)
+++ mythbackend.rc	2013-02-24 03:57:26 UTC (rev 84749)
@@ -1,73 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/profile
-
-###############################################################################
-# Default values to use if none are supplied in the config file.
-#
-# User who should start the mythbackend process
-MBE_USER='mythtv'
-
-# Startup options for mythbackend
-MBE_OPTS=''
-
-# Directory holding the mythbackend log file
-LOG_PATH='/var/log/mythtv'
-
-# Logging options for mythbackend
-LOG_OPTS=''
-###############################################################################
-
-CONFIG_FILE=/etc/conf.d/mythbackend
-PIDFILE=/var/run/mythbackend.pid
-
-if [[ -r "$CONFIG_FILE" ]]; then
-  . "$CONFIG_FILE"
-fi
-
-PID="$(cat "$PIDFILE" 2> /dev/null || pidof mythbackend)"
-export HOME="$(getent passwd "$MBE_USER" | cut -d : -f 6)"
-
-case "$1" in
-  start)
-    stat_busy "Starting MythTV Backend"
-
-    if [[ "$PID" -gt 0 ]] && kill -0 "$PID"; then
-      stat_fail
-      exit 0
-    fi
-
-    touch "$PIDFILE"
-    chown "$MBE_USER" "$PIDFILE" "$LOG_PATH"
-
-    MBE_CMD="/usr/bin/mythbackend --daemon \
-                                  --logpath "$LOG_PATH" $LOG_OPTS \
-                                  --pidfile "$PIDFILE" $MBE_OPTS"
-    if su "$MBE_USER" -c "$MBE_CMD"; then
-      add_daemon mythbackend
-      stat_done
-    else
-      stat_fail
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping MythTV Backend"
-    if [[ "$PID" -gt 0 ]] && kill "$PID" &> /dev/null; then
-      rm_daemon mythbackend
-      stat_done
-      rm -f "$PIDFILE"
-    else
-      stat_fail
-    fi
-    ;;
-  restart)
-    "$0" stop
-    "$0" start
-    ;;
-  *)
-    echo "usage: $0 (start|stop|restart)"
-    ;;
-esac
-exit 0




More information about the arch-commits mailing list