diff --git a/README.md b/README.md index 61b9c9a..0226e65 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ usage: netbox-sync.py [-h] [-c settings.ini] Sync objects from various sources to NetBox -Version: 1.2.1 (2021-11-03) +Version: 1.2.2 (2022-01-27) Project URL: https://github.com/bb-ricardo/netbox-sync optional arguments: diff --git a/module/__init__.py b/module/__init__.py index 546d7f5..605e33f 100644 --- a/module/__init__.py +++ b/module/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/__init__.py b/module/common/__init__.py index c30a8a5..368d00f 100644 --- a/module/common/__init__.py +++ b/module/common/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/cli_parser.py b/module/common/cli_parser.py index 043c0a9..f787253 100644 --- a/module/common/cli_parser.py +++ b/module/common/cli_parser.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/configuration.py b/module/common/configuration.py index 0c6b702..ae0b508 100644 --- a/module/common/configuration.py +++ b/module/common/configuration.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/logging.py b/module/common/logging.py index 76bba0f..9855b19 100644 --- a/module/common/logging.py +++ b/module/common/logging.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/misc.py b/module/common/misc.py index 3792404..0595c52 100644 --- a/module/common/misc.py +++ b/module/common/misc.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/common/support.py b/module/common/support.py index b050f7f..71f58be 100644 --- a/module/common/support.py +++ b/module/common/support.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/netbox/__init__.py b/module/netbox/__init__.py index 546d7f5..605e33f 100644 --- a/module/netbox/__init__.py +++ b/module/netbox/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/netbox/connection.py b/module/netbox/connection.py index 33c254a..59e3e13 100644 --- a/module/netbox/connection.py +++ b/module/netbox/connection.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/netbox/inventory.py b/module/netbox/inventory.py index 9083812..bfeaf96 100644 --- a/module/netbox/inventory.py +++ b/module/netbox/inventory.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/netbox/object_classes.py b/module/netbox/object_classes.py index 7a792ce..95e07b1 100644 --- a/module/netbox/object_classes.py +++ b/module/netbox/object_classes.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/sources/__init__.py b/module/sources/__init__.py index 5a5d3f3..32a6dd5 100644 --- a/module/sources/__init__.py +++ b/module/sources/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/sources/check_redfish/import_inventory.py b/module/sources/check_redfish/import_inventory.py index dcdc493..d697a64 100644 --- a/module/sources/check_redfish/import_inventory.py +++ b/module/sources/check_redfish/import_inventory.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/sources/common/source_base.py b/module/sources/common/source_base.py index 9d7255b..4f8c2fa 100644 --- a/module/sources/common/source_base.py +++ b/module/sources/common/source_base.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/module/sources/vmware/connection.py b/module/sources/vmware/connection.py index d8365b8..11d9202 100644 --- a/module/sources/vmware/connection.py +++ b/module/sources/vmware/connection.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # diff --git a/netbox-sync.py b/netbox-sync.py index 9869c66..d931143 100755 --- a/netbox-sync.py +++ b/netbox-sync.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (c) 2020 - 2021 Ricardo Bartels. All rights reserved. +# Copyright (c) 2020 - 2022 Ricardo Bartels. All rights reserved. # # netbox-sync.py # @@ -25,8 +25,8 @@ from module.sources import instantiate_sources -__version__ = "1.2.1" -__version_date__ = "2021-11-03" +__version__ = "1.2.2" +__version_date__ = "2022-01-27" __author__ = "Ricardo Bartels " __description__ = "NetBox Sync" __license__ = "MIT"