diff options
author | Joerg Bornkessel <hd_brummy@gentoo.org> | 2016-05-01 21:49:51 +0200 |
---|---|---|
committer | Joerg Bornkessel <hd_brummy@gentoo.org> | 2016-05-01 21:49:51 +0200 |
commit | b32f6afb1bb9be5596cd8123bb64ec636426ab08 (patch) | |
tree | 96ae482211773d117ba6b8e71433ef55ee7937b1 | |
parent | Bumped to version 2.7.4 (diff) | |
download | gentoo-vdr-scripts-b32f6afb1bb9be5596cd8123bb64ec636426ab08.tar.gz gentoo-vdr-scripts-b32f6afb1bb9be5596cd8123bb64ec636426ab08.tar.bz2 gentoo-vdr-scripts-b32f6afb1bb9be5596cd8123bb64ec636426ab08.zip |
typo; fixed init scripts to use openrc-run
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | etc/init.d/vdr | 4 | ||||
-rw-r--r-- | etc/init.d/vdr-x11 | 4 | ||||
-rw-r--r-- | etc/init.d/wakeup-reboot-halt | 4 | ||||
-rw-r--r-- | usr/share/vdr/rcscript/pre-start-30-parameter.sh | 2 |
5 files changed, 11 insertions, 10 deletions
@@ -1,9 +1,10 @@ # ChangeLog for gentoo-vdr-scripts # $Id$ -*gentoo-vdr-scripts-2.7.4 (01 May 2016) - -*gentoo-vdr-scripts-2.7.4 (01 May 2016) + 01 May 2016; Joerg Bornkessel <hd_brummy@gentoo.org> + usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/init.d/vdr, + etc/init.d/vdr-x11, etc/init.d/wakeup-reboot-halt: + typo; fixed init scripts to use openrc-run 01 May 2016; Joerg Bornkessel <hd_brummy@gentoo.org> usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr: diff --git a/etc/init.d/vdr b/etc/init.d/vdr index e82e94e..8668d3d 100644 --- a/etc/init.d/vdr +++ b/etc/init.d/vdr @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2015 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/etc/init.d/vdr-x11 b/etc/init.d/vdr-x11 index 2ca211f..c8a834f 100644 --- a/etc/init.d/vdr-x11 +++ b/etc/init.d/vdr-x11 @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2015 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/etc/init.d/wakeup-reboot-halt b/etc/init.d/wakeup-reboot-halt index ae4a2e1..7026696 100644 --- a/etc/init.d/wakeup-reboot-halt +++ b/etc/init.d/wakeup-reboot-halt @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/usr/share/vdr/rcscript/pre-start-30-parameter.sh b/usr/share/vdr/rcscript/pre-start-30-parameter.sh index 1460c31..9812f48 100644 --- a/usr/share/vdr/rcscript/pre-start-30-parameter.sh +++ b/usr/share/vdr/rcscript/pre-start-30-parameter.sh @@ -5,7 +5,7 @@ addon_main() { # parameters of start-stop-daemon [ -n "${VDR_NICENESS}" ] && add_daemonctrl_param --nicelevel "${VDR_NICENESS}" - [ -n "${VDR_IONICE}" ] && add_daemonctrl_param --ionice "${VDR_OINICE}" + [ -n "${VDR_IONICE}" ] && add_daemonctrl_param --ionice "${VDR_IONICE}" if [ "${VDRVERSNUM}" -ge "20110" ]; then # Set command line option |