~ubuntu-branches/debian/sid/bluez-utils/sid

« back to all changes in this revision

Viewing changes to debian/bluez-utils.default

  • Committer: Bazaar Package Importer
  • Author(s): Edd Dumbill
  • Date: 2004-06-14 14:24:12 UTC
  • Revision ID: james.westby@ubuntu.com-20040614142412-4awiu57ivcrk0mcs
Tags: 2.7-4
* Add support for HID proxy dongles in the init script.  These
  will now be switched on after hidd starts.
* Don't scribble permissions for /dev/rfcomm* on each install
  (Closes: #231510)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Defaults for bluez-utils
 
2
 
 
3
# This file supersedes /etc/default/bluez-pan.  If
 
4
# that exists on your system, you should use this
 
5
# file instead and remove the old one.  Until you
 
6
# do so, the contents of this file will be ignored.
 
7
 
 
8
############ HIDD
 
9
#
 
10
# To have Bluetooth mouse and keyboard support, get the
 
11
# Linux 2.6.6 patch or better from bluez.org, and set 
 
12
# HIDD_ENABLED to 1.
 
13
HIDD_ENABLED=0
 
14
HIDD_OPTIONS="--server"
 
15
# to make hidd always use a particular interface, use something
 
16
# like this, substituting the bdaddr of the interface:
 
17
# HIDD_OPTIONS="-i AA:BB:CC:DD:EE:FF --server"
 
18
 
 
19
############ COMPATIBILITY WITH OLD BLUEZ-PAN
 
20
# Compatibility: if old PAN config exists, use it
 
21
# rather than this file.
 
22
if test -f /etc/default/bluez-pan; then
 
23
    . /etc/default/bluez-pan
 
24
    return
 
25
fi
 
26
############
 
27
 
 
28
############ DUND
 
29
#
 
30
# Run dund -- this allows ppp logins. 1 for enabled, 0 for disabled.
 
31
DUND_ENABLED=0
 
32
 
 
33
# Arguments to dund: defaults to acting as a server
 
34
DUND_OPTIONS="--listen --persist"
 
35
 
 
36
# Run dund --help to see the full array of options.
 
37
# Here are some examples:
 
38
#
 
39
# Connect to any nearby host offering access
 
40
# DUND_OPTIONS="--search"
 
41
#
 
42
# Connect to host 00:11:22:33:44:55
 
43
# DUND_OPTIONS="--connect 00:11:22:33:44:55"
 
44
#
 
45
# Listen on channel 3
 
46
# DUND_OPTIONS="--listen --channel 3"
 
47
 
 
48
# Special consideration is needed for certain devices. Microsoft
 
49
# users see the --msdun option.  Ericsson P800 users will need to
 
50
# listen on channel 3 and also run 'sdptool add --channel=3 SP'
 
51
 
 
52
############ PAND
 
53
#
 
54
# Run pand -- ethernet: creates new network interfaces bnep<N>
 
55
# that can be configured in /etc/network/interfaces
 
56
# set to 1 for enabled, 0 for disabled
 
57
PAND_ENABLED=0
 
58
 
 
59
# Arguments to pand
 
60
# Read the PAN howto for ways to set this up
 
61
# http://bluez.sourceforge.net/contrib/HOWTO-PAN
 
62
PAND_OPTIONS=""
 
63
 
 
64
# example pand lines
 
65
#
 
66
# Act as the controller of an ad-hoc network
 
67
# PAND_OPTIONS="--listen --role GN"
 
68
#
 
69
# Act as a network access point: routes to other networks
 
70
# PAND_OPTIONS="--listen --role NAP"
 
71
#
 
72
# Act as a client of an ad-hoc controller with number 00:11:22:33:44:55
 
73
# PAND_OPTIONS="--role PANU --connect 00:11:22:33:44:55"
 
74
#
 
75
# Connect to any nearby network controller (access point or ad-hoc)
 
76
# PAND_OPTIONS="--role PANU --search"
 
77
 
 
78