commit: 95ee4b091e3c6e5e1db342a57b6fdee53b095e8c Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> AuthorDate: Mon Nov 13 20:32:41 2017 +0000 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> CommitDate: Mon Nov 13 20:45:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ee4b09
app-backup/amanda: fix ownership of /etc/amanda/amanda-security.conf Fixes: https://bugs.gentoo.org/637332 Package-Manager: Portage-2.3.8, Repoman-2.3.3 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org> app-backup/amanda/amanda-3.5-r1.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app-backup/amanda/amanda-3.5-r1.ebuild b/app-backup/amanda/amanda-3.5-r1.ebuild index 673a7b70dae..bbc32ece405 100644 --- a/app-backup/amanda/amanda-3.5-r1.ebuild +++ b/app-backup/amanda/amanda-3.5-r1.ebuild @@ -481,4 +481,13 @@ amanda_permissions_fix() { chown root:${AMANDA_GROUP_NAME} "${root}"/${i} || die chmod u=srwx,g=rx,o= "${root}"/${i} || die done + + # amanda-security.conf is a config file with similar requirements: + # writable only by root + # world-readable + # 3.3.9: introduced in /etc/amanda-security.conf + # 3.4.2: moved to /etc/amanda/amanda-security.conf + f=/etc/amanda/amanda-security.conf + chown root:root "${root}""${f}" || die + chmod u=rw,go=r "${root}""${f}" || die }
