Skip to content

Commit

Permalink
bumps version to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bb-Ricardo committed Jul 7, 2023
1 parent a2f8385 commit 1a8fd23
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY --from=builder /opt/netbox-sync/venv /opt/netbox-sync/venv

# Add netbox-sync user
RUN groupadd --gid 1000 netbox-sync && \
useradd --uid 1000 --gid netbox-sync --shell /bin/sh \
useradd --uid 1000 --gid netbox-sync --shell /bin/sh \
--no-create-home --system netbox-sync

USER netbox-sync
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ usage: netbox-sync.py [-h] [-c settings.ini [settings.ini ...]] [-g]
Sync objects from various sources to NetBox
Version: 1.4.2 (2023-04-24)
Version: 1.5.0 (2023-07-07)
Project URL: https://github.com/bb-ricardo/netbox-sync
options:
Expand Down Expand Up @@ -318,7 +318,7 @@ inventory_file_path = /opt/redfish_inventory
```

If different sources overwrite the same attribute for ex. a host then the order of the sources should be considered.
The last source in order from top to bottom will prevail.
The last source in order from top to bottom will prevail.

## Pruning
Prune objects in NetBox if they are no longer present in any source.
Expand Down
4 changes: 2 additions & 2 deletions module/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# For a copy, see file LICENSE.txt included in this
# repository or visit: <https://opensource.org/licenses/MIT>.

__version__ = "1.4.2"
__version_date__ = "2023-04-24"
__version__ = "1.5.0"
__version_date__ = "2023-07-07"
__author__ = "Ricardo Bartels <[email protected]>"
__description__ = "NetBox Sync"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion settings-example.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;;; Welcome to the NetBox Sync configuration file.
;;; Version: 1.4.2 (2023-04-24)
;;; Version: 1.5.0 (2023-07-07)
;;; Project URL: https://github.com/bb-ricardo/netbox-sync

; The values in this file override the default values used by the system if a config
Expand Down

0 comments on commit 1a8fd23

Please sign in to comment.