Signed-off-by: Marc Fournier <[email protected]> --- lenses/pg_hba.aug | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/lenses/pg_hba.aug b/lenses/pg_hba.aug index fdd781b..d125dce 100644 --- a/lenses/pg_hba.aug +++ b/lenses/pg_hba.aug @@ -1,6 +1,6 @@ (* Module: Pg_Hba - Parses /var/lib/pgsql/data/pg_hba.conf + Parses PostgreSQL's pg_hba.conf Author: Aurelien Bompard <[email protected]> @@ -12,7 +12,7 @@ About: License This file is licensed under the GPL. About: Configuration files - This lens applies to /var/lib/pgsql/data/pg_hba.conf. See <filter>. + This lens applies to pg_hba.conf. See <filter> for exact locations. *) @@ -65,7 +65,8 @@ module Pg_Hba = let record = [ seq "entries" . (record_local | record_remote) . eol ] - let filter = (incl "/var/lib/pgsql/data/pg_hba.conf") + let filter = (incl "/var/lib/pgsql/data/pg_hba.conf" . + incl "/etc/postgresql/*/*/pg_hba.conf" ) let lns = ( record | Util.comment | Util.empty ) * -- 1.7.2.3 _______________________________________________ augeas-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/augeas-devel
