adds MIT license to this porject

This commit is contained in:
Ricardo Bartels
2020-11-17 12:15:54 +01:00
parent fab219d2c7
commit b007dc6f81
15 changed files with 117 additions and 3 deletions

View File

@@ -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.

View File

@@ -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: <https://opensource.org/licenses/MIT>.

View File

@@ -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: <https://opensource.org/licenses/MIT>.

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import os

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import configparser
import os

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import os
import logging

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import sys

View File

@@ -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: <https://opensource.org/licenses/MIT>.
from ipaddress import ip_interface
import asyncio

View File

@@ -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: <https://opensource.org/licenses/MIT>.

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import json
import os

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import json

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import json
from ipaddress import ip_network, IPv4Network, IPv6Network

View File

@@ -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: <https://opensource.org/licenses/MIT>.
# define all available sources here
from .vmware.connection import VMWareHandler

View File

@@ -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: <https://opensource.org/licenses/MIT>.
import atexit
import pprint

View File

@@ -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: <https://opensource.org/licenses/MIT>.
self_description = """
Sync objects from various sources to Netbox
"""