Bump to 1.14.1
[platform/upstream/augeas.git] / lenses / iproute2.aug
1 module IPRoute2 =
2   autoload xfm
3
4   let empty   = [ del /[ \t]*#?[ \t]*\n/ "\n" ]
5   let id = Rx.hex | Rx.integer
6   let record = [ key id . del /[ \t]+/ "\t" . store /[a-zA-Z0-9\/-]+/ . Util.comment_or_eol ]
7
8   let lns = ( empty | Util.comment | record ) *
9
10   let xfm = transform lns (incl "/etc/iproute2/*" . Util.stdexcl)