/usr/share/augeas/lenses/dist/keepalived.aug is in augeas-lenses 1.2.0-0ubuntu1.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | (*
Module: Keepalived
Parses /etc/keepalived/keepalived.conf
Author: Raphael Pinson <raphink@gmail.com>
About: Reference
This lens tries to keep as close as possible to `man 5 keepalived.conf` where possible.
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/keepalived/keepalived.conf. See <filter>.
About: Examples
The <Test_Keepalived> file contains various examples and tests.
*)
module Keepalived =
autoload xfm
(************************************************************************
* Group: USEFUL PRIMITIVES
*************************************************************************)
(* Group: Comments and empty lines *)
(* View: indent *)
let indent = Util.indent
(* View: eol *)
let eol = Util.eol
(* View: opt_eol *)
let opt_eol = del /[ \t]*\n?/ " "
(* View: sep_spc *)
let sep_spc = Sep.space
(* View: comment
Map comments in "#comment" nodes *)
let comment = Util.comment_generic /[ \t]*[#!][ \t]*/ "# "
(* View: comment_eol
Map comments at eol *)
let comment_eol = Util.comment_generic /[ \t]*[#!][ \t]*/ " # "
(* View: comment_or_eol
A <comment_eol> or <eol> *)
let comment_or_eol = comment_eol | (del /[ \t]*[#!]?\n/ "\n")
(* View: empty
Map empty lines *)
let empty = Util.empty
(* View: sto_email_addr *)
let sto_email_addr = store Rx.email_addr
(* Variable: word *)
let word = Rx.word
(* Variable: word_slash *)
let word_slash = word | "/"
(* View: sto_word *)
let sto_word = store word
(* View: sto_num *)
let sto_num = store Rx.relinteger
(* View: sto_to_eol *)
let sto_to_eol = store /[^#! \t\n][^#!\n]*[^#! \t\n]|[^#! \t\n]/
(* View: field *)
let field (kw:regexp) (sto:lens) = indent . Build.key_value_line_comment kw sep_spc sto comment_eol
(* View: flag
A single word *)
let flag (kw:regexp) = [ indent . key kw . comment_or_eol ]
(* View: lens_block
A generic block with a title lens.
The definition is very similar to Build.block_newlines
but uses a different type of <comment>. *)
let lens_block (title:lens) (sto:lens) =
[ indent . title
. Build.block_newlines sto comment . eol ]
(* View: block
A simple block with just a block title *)
let block (kw:regexp) (sto:lens) = lens_block (key kw) sto
(* View: named_block
A block with a block title and name *)
let named_block (kw:string) (sto:lens) = lens_block (key kw . sep_spc . sto_word) sto
(* View: named_block_arg_title
A title lens for named_block_arg *)
let named_block_arg_title (kw:string) (name:string) (arg:string) =
key kw . sep_spc
. [ label name . sto_word ]
. sep_spc
. [ label arg . sto_word ]
(* View: named_block_arg
A block with a block title, a name and an argument *)
let named_block_arg (kw:string) (name:string) (arg:string) (sto:lens) =
lens_block (named_block_arg_title kw name arg) sto
(************************************************************************
* Group: GLOBAL CONFIGURATION
*************************************************************************)
(* View: email
A simple email address entry *)
let email = [ indent . label "email" . sto_email_addr . comment_or_eol ]
(* View: global_defs_field
Possible fields in the global_defs block *)
let global_defs_field =
let word_re = "smtp_server"|"lvs_id"|"router_id"
in let num_re = "smtp_connect_timeout"
in block "notification_email" email
| field "notification_email_from" sto_email_addr
| field word_re sto_word
| field num_re sto_num
(* View: global_defs
A global_defs block *)
let global_defs = block "global_defs" global_defs_field
(* View: prefixlen
A prefix for IP addresses *)
let prefixlen = [ label "prefixlen" . Util.del_str "/" . sto_num ]
(* View: ipaddr
An IP address or range with an optional mask *)
let ipaddr = label "ipaddr" . store /[0-9.-]+/ . prefixlen?
(* View: ipdev
A device for IP addresses *)
let ipdev = [ key "dev" . sep_spc . sto_word ]
(* View: static_ipaddress_field
The whole string is fed to ip addr add.
You can truncate the string anywhere you like and let ip addr add use defaults for the rest of the string.
To be refined with fields according to `ip addr help`.
*)
let static_ipaddress_field = [ indent . ipaddr
. (sep_spc . ipdev)?
. comment_or_eol ]
(* View: static_routes_field
src $SRC_IP to $DST_IP dev $SRC_DEVICE
*)
let static_routes_field = [ indent . label "route"
. [ key "src" . sto_word ] . sep_spc
. [ key "to" . sto_word ] . sep_spc
. [ key "dev" . sto_word ] . comment_or_eol ]
(* View: static_routes *)
let static_routes = block "static_ipaddress" static_ipaddress_field
| block "static_routes" static_routes_field
(* View: global_conf
A global configuration entry *)
let global_conf = global_defs | static_routes
(************************************************************************
* Group: VRRP CONFIGURATION
*************************************************************************)
(*View: vrrp_sync_group_field *)
let vrrp_sync_group_field = block "group" [ indent . key word . comment_or_eol ]
(* View: vrrp_sync_group *)
let vrrp_sync_group = named_block "vrrp_sync_group" vrrp_sync_group_field
(* View: vrrp_instance_field *)
let vrrp_instance_field =
let word_re = "state" | "interface" | "lvs_sync_daemon_interface"
in let num_re = "virtual_router_id" | "priority" | "advert_int" | "garp_master_delay"
in let to_eol_re = /notify_(master|backup|fault)/
in let flag_re = "smtp_alert" | "nopreempt" | "ha_suspend" | "debug"
in field word_re sto_word
| field num_re sto_num
| field to_eol_re sto_to_eol
| flag flag_re
| block "authentication" (
field /auth_(type|pass)/ sto_word
)
| block "virtual_ipaddress" static_ipaddress_field
| block /track_(interface|script)/ ( flag word )
(* View: vrrp_instance *)
let vrrp_instance = named_block "vrrp_instance" vrrp_instance_field
(* View: vrrp_script_field *)
let vrrp_script_field =
let num_re = "interval" | "weight"
in let to_eol_re = "script"
in field to_eol_re sto_to_eol
| field num_re sto_num
(* View: vrrp_script *)
let vrrp_script = named_block "vrrp_script" vrrp_script_field
(* View: vrrpd_conf
contains subblocks of VRRP synchronization group(s) and VRRP instance(s) *)
let vrrpd_conf = vrrp_sync_group | vrrp_instance | vrrp_script
(************************************************************************
* Group: LVS CONFIGURATION
*************************************************************************)
(* View: tcp_check_field *)
let tcp_check_field = field /connect_(timeout|port)/ sto_num
(* View: real_server_field *)
let real_server_field = field "weight" sto_num
| block "TCP_CHECK" tcp_check_field
(* View: virtual_server_field *)
let virtual_server_field =
let num_re = "delay_loop"
in let word_re = /lb_(algo|kind)/ | "nat_mask" | "protocol"
in field num_re sto_num
| field word_re sto_word
| named_block_arg "real_server" "ip" "port" real_server_field
(* View: virtual_server *)
let virtual_server = named_block_arg "virtual_server" "ip" "port" virtual_server_field
(* View: virtual_server_group_field *)
let virtual_server_group_field = [ indent . label "vip"
. [ ipaddr ]
. sep_spc
. [ label "port" . sto_num ]
. comment_or_eol ]
(* View: virtual_server_group *)
let virtual_server_group = named_block "virtual_server_group" virtual_server_group_field
(* View: lvs_conf
contains subblocks of Virtual server group(s) and Virtual server(s) *)
let lvs_conf = virtual_server | virtual_server_group
(* View: lns
The keepalived lens
*)
let lns = ( empty | comment | global_conf | vrrpd_conf | lvs_conf )*
(* Variable: filter *)
let filter = incl "/etc/keepalived/keepalived.conf"
let xfm = transform lns filter
|