From: Arran Cudbard-Bell Date: Wed, 23 Oct 2019 13:35:48 +0000 (-0400) Subject: Fixup deprecated detailperm config item X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=627c745cdec75aea9c0b0ca61df14f6598421cf6;p=thirdparty%2Ffreeradius-server.git Fixup deprecated detailperm config item --- diff --git a/doc/antora/modules/tutorials/pages/module_fail_over.adoc b/doc/antora/modules/tutorials/pages/module_fail_over.adoc index 5aa19320a34..e2140dcfd10 100644 --- a/doc/antora/modules/tutorials/pages/module_fail_over.adoc +++ b/doc/antora/modules/tutorials/pages/module_fail_over.adoc @@ -32,12 +32,12 @@ The first step is to configure the server to have two instances of the -------------------------------------------------- detail detail1 { filename = ${radacctdir}/detail1 - detailperm = 0600 + permissions = 0600 } detail detail2 { filename = ${radacctdir}/detail2 - detailperm = 0600 + permissions = 0600 } -------------------------------------------------- diff --git a/doc/antora/modules/tutorials/pages/multiple_modules.adoc b/doc/antora/modules/tutorials/pages/multiple_modules.adoc index 84fe31cca69..61c348fb179 100644 --- a/doc/antora/modules/tutorials/pages/multiple_modules.adoc +++ b/doc/antora/modules/tutorials/pages/multiple_modules.adoc @@ -24,12 +24,12 @@ for each date. The following information should be added to the -------------------------------------------------------------------- detail byname { filename = ${radacctdir}/byname/%{%{User-Name}:-none} - detailperm = 0600 + permissions = 0600 } detail bydate { filename = ${radacctdir}/bydate/%Y-%m-%d - detailperm = 0600 + permissions = 0600 } --------------------------------------------------------------------