From: Alan T. DeKok Date: Tue, 26 Sep 2023 12:50:09 +0000 (-0400) Subject: document path configuration. Fixes #5190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=907f8f8a35962fdd60f6c1d9eede3dc7e5a855c2;p=thirdparty%2Ffreeradius-server.git document path configuration. Fixes #5190 --- diff --git a/raddb/mods-available/python b/raddb/mods-available/python index 748852f6214..f89fdeb426f 100644 --- a/raddb/mods-available/python +++ b/raddb/mods-available/python @@ -32,6 +32,27 @@ python { # module = example + # path:: Where the modules are loaded from + # + # Note that due to limitations on Python, this configuration + # item is GLOBAL TO THE SERVER. That is, you cannot have two + # instances of the python module, each with a different path. + # +# path="${modconfdir}/${.:name}:/another_path/to/python_files" + + # + # path_include_default:: Should we use the default Python path + # in addition to the above path. + # + # If `yes`, then the above `path` is added to the default Python + # path. + # + # If `no`, then the above `path` is the only path which is searched. + # + # The default value is `no`. + # +# path_include_default = yes + # # [NOTE] # ====