diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-29 15:04:21 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-29 15:04:21 -0700 |
commit | 6321b50e5d41c701506d041d97879d0fdf26e3a8 (patch) | |
tree | d1c9bba70b0b4b1279cfdb6783e131c0f8f792a5 /interface-templates | |
parent | 10045880f2801c174008e76e5d8ef1d1db813fea (diff) | |
download | vyatta-cfg-quagga-6321b50e5d41c701506d041d97879d0fdf26e3a8.tar.gz vyatta-cfg-quagga-6321b50e5d41c701506d041d97879d0fdf26e3a8.zip |
Reformat template for clarity
-ELINESTOOLONGTOOREAD
Diffstat (limited to 'interface-templates')
-rw-r--r-- | interface-templates/ip/rip/authentication/plaintext-password/node.def | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/interface-templates/ip/rip/authentication/plaintext-password/node.def b/interface-templates/ip/rip/authentication/plaintext-password/node.def index 595ae910..b223e61c 100644 --- a/interface-templates/ip/rip/authentication/plaintext-password/node.def +++ b/interface-templates/ip/rip/authentication/plaintext-password/node.def @@ -3,11 +3,15 @@ help: Set plain text password syntax:expression: pattern $VAR(@) "^[^[:space:]]{1,16}$" ; "Password must be 16 characters or less" commit:expression: $VAR(../md5/) == "" ; "md5 password already set" -update: vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \ - -c "ip rip authentication mode text" -c "ip rip authentication string $VAR(@)"; +update: vyatta-vtysh \ + -c "configure terminal" -c "interface $IFNAME" \ + -c "ip rip authentication mode text" \ + -c "ip rip authentication string $VAR(@)" -delete: vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \ - -c "no ip rip authentication mode" -c "no ip rip authentication string $VAR(@)"; +delete: vyatta-vtysh \ + -c "configure terminal" -c "interface $IFNAME" \ + -c "no ip rip authentication mode" \ + -c "no ip rip authentication string $VAR(@)" comp_help: possible completions: <text> Password (16 characters or less) |