You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-backup/amanda/files/amanda-xinetd-2.6.0_p2-r2

49 lines
1.5 KiB

# 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/amanda/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/amanda/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/amanda/amidxtaped
# You need to ensure this points to your Amanda server!
# Don't just remove it!
only_from = __AMANDA_SERVER__
disable = yes
}