diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-29 12:04:36 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-29 12:12:02 +0100 |
commit | 8f8629227c0631cf75d896af1e1413b330f82781 (patch) | |
tree | fb7a7a1b0a8c3f0f267745e55703006300f83799 /src/conf_mode/dhcp_relay.py | |
parent | e4ea410b7587b0018055962c295ab491133f458c (diff) | |
download | vyos-1x-8f8629227c0631cf75d896af1e1413b330f82781.tar.gz vyos-1x-8f8629227c0631cf75d896af1e1413b330f82781.zip |
smoketest: dhcp-relay: T3095: initial tests
Diffstat (limited to 'src/conf_mode/dhcp_relay.py')
-rwxr-xr-x | src/conf_mode/dhcp_relay.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/dhcp_relay.py b/src/conf_mode/dhcp_relay.py index 352865b9d..34b3fabb7 100755 --- a/src/conf_mode/dhcp_relay.py +++ b/src/conf_mode/dhcp_relay.py @@ -26,7 +26,7 @@ from vyos import ConfigError from vyos import airbag airbag.enable() -config_file = r'/run/dhcp-relay/dhcp.conf' +config_file = r'/run/dhcp-relay/dhcrelay.conf' default_config_data = { 'interface': [], @@ -104,7 +104,7 @@ def generate(relay): if not relay: return None - render(config_file, 'dhcp-relay/config.tmpl', relay) + render(config_file, 'dhcp-relay/dhcrelay.conf.tmpl', relay) return None def apply(relay): |