l10n: Updates to Russian (ru) translation
[pulseaudio-mirror.git] / src / daemon / esdcompat.in
blob665018036165827fca77434f3e74c04dafbe9c06
1 #!/bin/sh
3 # This file is part of PulseAudio.
5 # PulseAudio is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # PulseAudio is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with PulseAudio; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
20 VERSION_STRING="@PACKAGE_NAME@ esd wrapper @PACKAGE_VERSION@"
22 fail() {
23 echo "ERROR: $1"
24 exit 1
27 ARGS=" --log-target=syslog"
29 while [ "$#" -gt "0" ]; do
31 case "$1" in
32 "")
35 -v|--version)
36 echo "$VERSION_STRING"
37 exit 0
40 -h|--help)
41 cat <<EOF
42 $VERSION_STRING
44 Usage: $0 [options]
46 -v --version print version information
47 -h --help show this help
49 Ignored directives:
51 -tcp use tcp/ip sockets in addition to unix domain
52 -promiscuous don't require authentication
53 -d DEVICE force esd to use sound device DEVICE
54 -b run server in 8 bit sound mode
55 -r RATE run server at sample rate of RATE
56 -as SECS free audio device after SECS of inactivity
57 -unix use unix domain sockets instead of tcp/ip
58 -public make tcp/ip access public (other than localhost)
59 -terminate terminate esd daemone after last client exits
60 -nobeeps disable startup beeps
61 -trust start esd even if use of /tmp/.esd can be insecure
62 -port PORT listen for connections at PORT (only for tcp/ip)
63 -bind ADDRESS binds to ADDRESS (only for tcp/ip)
64 EOF
65 exit 0
68 -spawnpid)
69 shift
70 ARGS="$ARGS '-Lmodule-esound-compat-spawnpid pid=$1'"
73 -spawnfd)
74 shift
75 ARGS="$ARGS '-Lmodule-esound-compat-spawnfd fd=$1'"
78 -unix|-b|-public|-terminate|-nobeeps|-trust|-tcp|-promiscuous)
79 # Ignore these commands
80 ;;
82 -d|-r|-as|-port|-bind)
83 # Ignore these commands and their arguments
84 shift
89 fail "Unknown command: $1"
91 esac
93 shift
94 done
96 eval "exec '@PA_BINARY@'$ARGS"