diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-04-17 09:54:26 +0200 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-04-17 22:57:21 +0100 |
commit | ef4247bcbf99da8e8aafef0657a251abc80722b4 (patch) | |
tree | 87ac8317c54fef0ee5856362506e21784375d727 /sys-apps/sparc-utils | |
parent | net-irc/irssi: stable 1.0.7 for ppc, bug #647780 (diff) | |
download | gentoo-ef4247bcbf99da8e8aafef0657a251abc80722b4.tar.gz gentoo-ef4247bcbf99da8e8aafef0657a251abc80722b4.tar.bz2 gentoo-ef4247bcbf99da8e8aafef0657a251abc80722b4.zip |
sys-apps/sparc-utils: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/8039
Diffstat (limited to 'sys-apps/sparc-utils')
-rw-r--r-- | sys-apps/sparc-utils/files/audioctl.init | 22 |
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 $? -} |