diff options
author | 2009-11-22 09:39:21 +0000 | |
---|---|---|
committer | 2009-11-22 09:39:21 +0000 | |
commit | ace11f6192349553705d75b9289d50d22cd4acec (patch) | |
tree | 607ad1ffec34b8ac49fc3a775a9364ed52fb8ae2 /app-backup/amanda/files | |
parent | Version bump. (diff) | |
download | gentoo-2-ace11f6192349553705d75b9289d50d22cd4acec.tar.gz gentoo-2-ace11f6192349553705d75b9289d50d22cd4acec.tar.bz2 gentoo-2-ace11f6192349553705d75b9289d50d22cd4acec.zip |
Bug #266024: version bump. Thanks to MATSUU Takuto <matsuu@gentoo.org> for the submission. Was delayed by bugs in _p1, fixed by upstream in _p2 now.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'app-backup/amanda/files')
-rw-r--r-- | app-backup/amanda/files/amanda-xinetd-2.6.1_p1-client | 19 | ||||
-rw-r--r-- | app-backup/amanda/files/amanda-xinetd-2.6.1_p1-server | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-client b/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-client new file mode 100644 index 000000000000..ed73c03cd14f --- /dev/null +++ b/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-client @@ -0,0 +1,19 @@ +# 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 + server_args = -auth=bsd amdump + # You need to ensure this points to your Amanda server! + # Don't just remove it! + only_from = __AMANDA_SERVER__ + disable = yes +} diff --git a/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-server b/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-server new file mode 100644 index 000000000000..269198e0379b --- /dev/null +++ b/app-backup/amanda/files/amanda-xinetd-2.6.1_p1-server @@ -0,0 +1,19 @@ +# 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 + server_args = -auth=bsd amdump amindexd amidxtaped + # You need to ensure this points to your Amanda server! + # Don't just remove it! + only_from = __AMANDA_SERVER__ + disable = yes +} |