diff --git a/README.md b/README.md index 3ad6af2..be8fb52 100644 --- a/README.md +++ b/README.md @@ -76,5 +76,7 @@ If you migrate from https://github.com/synackray/vcenter-netbox-sync do followin ## TESTING It is recommended to set log level to "DEBUG2" this way the program should tell you what is happening and why -# Licenses - APACHE (probably) +# License +>You can check out the full license [here](LICENSE.txt) + +This project is licensed under the terms of the **MIT** license. diff --git a/module/__init__.py b/module/__init__.py index 8b13789..59581dc 100644 --- a/module/__init__.py +++ b/module/__init__.py @@ -1 +1,8 @@ - +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . diff --git a/module/common/__init__.py b/module/common/__init__.py index b28b04f..0e53804 100644 --- a/module/common/__init__.py +++ b/module/common/__init__.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . diff --git a/module/common/cli_parser.py b/module/common/cli_parser.py index 8820786..8101aaa 100644 --- a/module/common/cli_parser.py +++ b/module/common/cli_parser.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import os diff --git a/module/common/configuration.py b/module/common/configuration.py index cbe4062..46d8b1a 100644 --- a/module/common/configuration.py +++ b/module/common/configuration.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import configparser import os diff --git a/module/common/logging.py b/module/common/logging.py index 135aa5c..265e5cd 100644 --- a/module/common/logging.py +++ b/module/common/logging.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import os import logging diff --git a/module/common/misc.py b/module/common/misc.py index d0edeab..af7d501 100644 --- a/module/common/misc.py +++ b/module/common/misc.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import sys diff --git a/module/common/support.py b/module/common/support.py index bf014c9..9efc104 100644 --- a/module/common/support.py +++ b/module/common/support.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . from ipaddress import ip_interface import asyncio diff --git a/module/netbox/__init__.py b/module/netbox/__init__.py index e69de29..59581dc 100644 --- a/module/netbox/__init__.py +++ b/module/netbox/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . diff --git a/module/netbox/connection.py b/module/netbox/connection.py index 9b35f68..b5120ab 100644 --- a/module/netbox/connection.py +++ b/module/netbox/connection.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import json import os diff --git a/module/netbox/inventory.py b/module/netbox/inventory.py index 78dd412..8cefd26 100644 --- a/module/netbox/inventory.py +++ b/module/netbox/inventory.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import json diff --git a/module/netbox/object_classes.py b/module/netbox/object_classes.py index 076adb4..72dc3fc 100644 --- a/module/netbox/object_classes.py +++ b/module/netbox/object_classes.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import json from ipaddress import ip_network, IPv4Network, IPv6Network diff --git a/module/sources/__init__.py b/module/sources/__init__.py index aaa129f..158abd5 100644 --- a/module/sources/__init__.py +++ b/module/sources/__init__.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . # define all available sources here from .vmware.connection import VMWareHandler diff --git a/module/sources/vmware/connection.py b/module/sources/vmware/connection.py index 9ec71f5..b2747a4 100644 --- a/module/sources/vmware/connection.py +++ b/module/sources/vmware/connection.py @@ -1,3 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . import atexit import pprint diff --git a/netbox-sync.py b/netbox-sync.py index f1307ee..8a09c58 100755 --- a/netbox-sync.py +++ b/netbox-sync.py @@ -1,4 +1,13 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# Copyright (c) 2020 Ricardo Bartels. All rights reserved. +# +# netbox-sync.py +# +# This work is licensed under the terms of the MIT license. +# For a copy, see file LICENSE.txt included in this +# repository or visit: . + self_description = """ Sync objects from various sources to Netbox """