diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-29 06:37:00 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-29 06:37:00 +0100 |
commit | 5f4335042cf40bf4bf18294706cce0b3a2fd5907 (patch) | |
tree | 260f4c2be93f2f59846982533cd47051d7ea5ec8 /src/conf_mode/vpn_l2tp.py | |
parent | 073b2a75f19d3af942e78ae44e2d96162648f844 (diff) | |
download | vyos-1x-5f4335042cf40bf4bf18294706cce0b3a2fd5907.tar.gz vyos-1x-5f4335042cf40bf4bf18294706cce0b3a2fd5907.zip |
airbag: T2088: explicit enabling of the feature
airbag must now be explicitly installed.
the patch also allow to fully disables the installation of the logging
code at setup (and not just installing and doing nothing)
Diffstat (limited to 'src/conf_mode/vpn_l2tp.py')
-rwxr-xr-x | src/conf_mode/vpn_l2tp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/vpn_l2tp.py b/src/conf_mode/vpn_l2tp.py index f312f2a17..febe8c3b7 100755 --- a/src/conf_mode/vpn_l2tp.py +++ b/src/conf_mode/vpn_l2tp.py @@ -30,6 +30,8 @@ from vyos.validate import is_ipv4 from vyos import ConfigError from vyos.template import render +from vyos import airbag +airbag.enable() l2tp_conf = '/run/accel-pppd/l2tp.conf' l2tp_chap_secrets = '/run/accel-pppd/l2tp.chap-secrets' |