diff options
| author | Christian Poessinger <christian@poessinger.com> | 2020-12-28 20:07:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-28 20:07:52 +0100 |
| commit | 829e76f7392e348ccc01c56e9680efb4eba80440 (patch) | |
| tree | 282dac56ecfccf381fa92ad9027df6779d16ae2f /python/vyos/template.py | |
| parent | c1fcbba9cb45f981e5bd8decf3ebbc1e17d9fbd9 (diff) | |
| parent | eeb78e842423319169b036d16601e73227dbffdd (diff) | |
| download | veeos-1x-829e76f7392e348ccc01c56e9680efb4eba80440.tar.gz veeos-1x-829e76f7392e348ccc01c56e9680efb4eba80440.zip | |
Merge pull request #643 from c-po/t563-webproxy
webproxy: T563: migrate from old Perl code to XML and get_config_dict()
Diffstat (limited to 'python/vyos/template.py')
| -rw-r--r-- | python/vyos/template.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index 63d400642..bf087c223 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -248,7 +248,6 @@ def dec_ip(address, decrement): from ipaddress import ip_interface return str(ip_interface(address).ip - int(decrement)) - @register_filter('isc_static_route') def isc_static_route(subnet, router): # https://ercpe.de/blog/pushing-static-routes-with-isc-dhcp-server @@ -270,3 +269,9 @@ def isc_static_route(subnet, router): string += ','.join(router.split('.')) return string + +@register_filter('is_file') +def is_file(filename): + if os.path.exists(filename): + return os.path.isfile(filename) + return False |
