diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-03-16 20:09:59 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-04-15 17:50:57 +0200 |
commit | 1df3827994bfef6c166bdb0f51cc51c212507361 (patch) | |
tree | d9b5c719548f5da011350a90b628654c5e499dbd /src/conf-mode | |
parent | bdda9e84e55d80fafc7cd115d7beb858d4a1a00d (diff) | |
download | vyos-1x-1df3827994bfef6c166bdb0f51cc51c212507361.tar.gz vyos-1x-1df3827994bfef6c166bdb0f51cc51c212507361.zip |
Initial CLI interface support for XML DNS forwarder
Diffstat (limited to 'src/conf-mode')
-rwxr-xr-x | src/conf-mode/vyos-config-dns-forwarding.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/conf-mode/vyos-config-dns-forwarding.py b/src/conf-mode/vyos-config-dns-forwarding.py new file mode 100755 index 000000000..27e7a5ef5 --- /dev/null +++ b/src/conf-mode/vyos-config-dns-forwarding.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2018 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# + +import sys +import os + +from vyos.config import Config +from vyos.util import ConfigError + +def get_config(): + return None + +def verify(dns): + return None + +def generate(dns): + return None + +def apply(dns): + return None + +if __name__ == '__main__': + try: + c = get_config() + verify(c) + generate(c) + apply(c) + except ConfigError as e: + print(e) + sys.exit(1) |