summaryrefslogtreecommitdiff
path: root/sys-apps/sparc-utils/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-19 14:14:48 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-19 14:14:48 +0100
commit5cfef3c94cd7e82136c69a0322f5ba21f7e64632 (patch)
tree8f255dfacbacb657e3ac3654d01c1e11e651c066 /sys-apps/sparc-utils/files
parent8aebb228036d5e2863b7eaa6e319ab41c1669269 (diff)
gentoo resync : 19.04.2018
Diffstat (limited to 'sys-apps/sparc-utils/files')
-rw-r--r--sys-apps/sparc-utils/files/audioctl.init22
1 files changed, 0 insertions, 22 deletions
diff --git a/sys-apps/sparc-utils/files/audioctl.init b/sys-apps/sparc-utils/files/audioctl.init
deleted file mode 100644
index 10383d56ae8a..000000000000
--- a/sys-apps/sparc-utils/files/audioctl.init
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-checkconfig() {
- if [ -z "${PARAMS}" ]
- then
- eerror "Please make sure that /etc/conf.d/audioctl has \$PARAMS set"
- return 1
- fi
-}
-start() {
- checkconfig || return 1
-
- ebegin "Starting audioctl"
- if [ -n "${DEVICE}" ]; then
- /usr/bin/audioctl -f ${DEVICE} -nw ${PARAMS}
- else
- /usr/bin/audioctl -nw ${PARAMS}
- fi
- eend $?
-}