diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-04-15 17:30:57 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-04-15 17:32:31 +0200 |
commit | bdda9e84e55d80fafc7cd115d7beb858d4a1a00d (patch) | |
tree | bc235109bcc762ffff811bfd89184bd5519c1b80 /src | |
parent | f2c8117e8d63fd5e99a9fe4a049c688e4dac553e (diff) | |
download | vyos-1x-bdda9e84e55d80fafc7cd115d7beb858d4a1a00d.tar.gz vyos-1x-bdda9e84e55d80fafc7cd115d7beb858d4a1a00d.zip |
mdns-repeater: bugfix python script
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf-mode/vyos-config-mdns-repeater.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/conf-mode/vyos-config-mdns-repeater.py b/src/conf-mode/vyos-config-mdns-repeater.py index 04a17c126..50949ed2b 100755 --- a/src/conf-mode/vyos-config-mdns-repeater.py +++ b/src/conf-mode/vyos-config-mdns-repeater.py @@ -36,8 +36,6 @@ def get_config(): if conf.exists('interface'): intfs_names = conf.return_values('interface') - intfs_names=intfs_names.replace("'", "") - intfs_names=intfs_names.split() for name in intfs_names: interface_list.append(name) |