diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-11-04 11:47:38 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-11-04 11:47:38 +0100 |
commit | ef7db51a0030bfab534c67c003494df955ba7129 (patch) | |
tree | 86acf117ca3c13b206df6dc8847f40d07fce9cfb /src/op_mode/dynamic_dns.py | |
parent | f69a8bbf9cdaac6b3acb0b9da2d748ae37323e3e (diff) | |
download | vyos-1x-ef7db51a0030bfab534c67c003494df955ba7129.tar.gz vyos-1x-ef7db51a0030bfab534c67c003494df955ba7129.zip |
Add missing VyOS copyright notices
Diffstat (limited to 'src/op_mode/dynamic_dns.py')
-rwxr-xr-x | src/op_mode/dynamic_dns.py | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/op_mode/dynamic_dns.py b/src/op_mode/dynamic_dns.py index 7ac3dfe9f..0d457e247 100755 --- a/src/op_mode/dynamic_dns.py +++ b/src/op_mode/dynamic_dns.py @@ -1,4 +1,19 @@ #!/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 os import argparse import jinja2 @@ -19,7 +34,6 @@ update-status: {{ entry.status }} {% endfor -%} """ - def show_status(): # Do nothing if service is not configured c = Config() |