blob: 2a52e591bc87c8a787e1e7defb1a55c8a248f46c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# These are the services needed for amanda.
# Default is to talk to localhost only unless
# AMANDA_SERVER was specified at build time.
service amanda
{
socket_type = dgram
protocol = udp
wait = yes
user = __AMANDA_USER_NAME__
group = __AMANDA_GROUP_NAME__
groups = yes
server = /usr/libexec/amandad
# You need to ensure this points to your Amanda server!
# Don't just remove it!
only_from = __AMANDA_SERVER__
disable = yes
}
service amandaidx
{
socket_type = stream
protocol = tcp
wait = no
user = __AMANDA_USER_NAME__
group = __AMANDA_GROUP_NAME__
groups = yes
server = /usr/libexec/amindexd
# You need to ensure this points to your Amanda server!
# Don't just remove it!
only_from = __AMANDA_SERVER__
disable = yes
}
service amidxtape
{
socket_type = stream
protocol = tcp
wait = no
user = __AMANDA_USER_NAME__
group = __AMANDA_GROUP_NAME__
groups = yes
server = /usr/libexec/amidxtaped
# You need to ensure this points to your Amanda server!
# Don't just remove it!
only_from = __AMANDA_SERVER__
disable = yes
}
|