diff options
author | Daniil Baturin <daniil@baturin.org> | 2014-07-11 22:57:55 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2014-07-11 22:57:55 +0700 |
commit | e8f38ad6ca5b06acb12cd7c9e7801276838c3c0e (patch) | |
tree | 92200cf3519c04ec31722c1fc5e59ba5e55afdff | |
parent | 2d1a8583e126c6ed6335a8e05db72502ceb0c7dd (diff) | |
parent | 9c94b7796ac430a7800ea6b4965e399149c28eff (diff) | |
download | vyatta-cfg-system-e8f38ad6ca5b06acb12cd7c9e7801276838c3c0e.tar.gz vyatta-cfg-system-e8f38ad6ca5b06acb12cd7c9e7801276838c3c0e.zip |
Merge pull request #16 from ftoyama/helium
Bug#258 Unable to add l2tp_ip module for L2TPv3 over ip
-rw-r--r-- | templates/interfaces/l2tpv3/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/interfaces/l2tpv3/node.def b/templates/interfaces/l2tpv3/node.def index de12448e..e2a6f24e 100644 --- a/templates/interfaces/l2tpv3/node.def +++ b/templates/interfaces/l2tpv3/node.def @@ -22,7 +22,7 @@ commit:expression: $VAR(./peer-session-id/) != "" ; \ begin: [ -d /sys/module/l2tp_eth ] || sudo modprobe l2tp_eth [ -d /sys/module/l2tp_netlink ] || sudo modprobe l2tp_netlink - if [ "$VAR(./encap/@)" = "ip" ] && [ ! -d /sys/module/l2tp_ip ] ; then + if [ "$VAR(./encapsulation/@)" = "ip" ] && [ ! -d /sys/module/l2tp_ip ] ; then sudo modprobe l2tp_ip fi |