/usr/share/augeas/lenses/dist/koji.aug is in augeas-lenses 1.2.0-0ubuntu1.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | (*
Module: Koji
Parses koji config files
Author: Pat Riehecky <riehecky@fnal.gov>
About: Reference
This lens tries to keep as close as possible to koji config syntax
About: License
This file is licenced under the LGPL v2+, like the rest of Augeas.
About: Lens Usage
To be documented
About: Configuration files
This lens applies to:
/etc/koji.conf
/etc/kojid/kojid.conf
/etc/koji-hub/hub.conf
/etc/kojira/kojira.conf
/etc/kojiweb/web.conf
/etc/koji-shadow/koji-shadow.conf
See <filter>.
*)
module Koji =
autoload xfm
let lns = IniFile.lns_loose_multiline
let filter = incl "/etc/koji.conf"
. incl "/etc/kojid/kojid.conf"
. incl "/etc/koji-hub/hub.conf"
. incl "/etc/kojira/kojira.conf"
. incl "/etc/kojiweb/web.conf"
. incl "/etc/koji-shadow/koji-shadow.conf"
let xfm = transform lns filter
|