/usr/share/augeas/lenses/dist/nuthostsconf.aug is in nut-client 2.7.2-4.
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 41 42 43 44 45 | (*
Module: NutHostsConf
Parses /etc/nut/hosts.conf
Author: Frederic Bohe <fredericbohe@eaton.com>
About: License
This file is licensed under the GPL.
About: Lens Usage
Sample usage of this lens in augtool
* Print all monitored upsd
> print /files/etc/nut/hosts.conf/MONITOR
About: Configuration files
This lens applies to /etc/nut/hosts.conf. See <filter>.
*)
module NutHostsConf =
autoload hosts_xfm
(************************************************************************
* Group: HOSTS.CONF
*************************************************************************)
(* general *)
let del_spc = Util.del_opt_ws ""
let sep_spc = Util.del_ws_spc
let eol = Util.eol
let word = /[^"#; \t\n]+/
let empty = Util.empty
let comment = Util.comment
let quoted_string = del "\"" "\"" . store /[^"\n]+/ . del "\"" "\""
let hosts_notify = [ del_spc . key "MONITOR" . sep_spc
. [ label "system" . store word . sep_spc ]
. [ label "description" . quoted_string ] . eol ]
let hosts_lns = (hosts_notify|comment|empty)*
let hosts_filter = ( incl "/etc/nut/hosts.conf" )
. Util.stdexcl
let hosts_xfm = transform hosts_lns hosts_filter
|