Skip to content

Commit 4dd7a51

Browse files
authored
Merge pull request #419 from netbox-community/develop
Version 1.0.1
2 parents ed62561 + c7e259e commit 4dd7a51

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- id: git-checkout
2929
name: Checkout
30-
uses: actions/checkout@v1
30+
uses: actions/checkout@v2
3131
- id: docker-build
3232
name: Build the image from '${{ matrix.docker_from }}' with '${{ matrix.build_cmd }}'
3333
run: ${{ matrix.build_cmd }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

docker/launch-netbox.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ load_configuration() {
77
MAX_WAIT=10
88
WAIT_COUNT=0
99
while [ ! -S $UNIT_SOCKET ]; do
10-
if [ $WAIT_COUNT -gte $MAX_WAIT ]; then
10+
if [ $WAIT_COUNT -ge $MAX_WAIT ]; then
1111
echo "⚠️ No control socket found; configuration will not be loaded."
1212
return 1
1313
fi

requirements-container.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
napalm==3.2.0
22
ruamel.yaml==0.16.12
33
django-auth-ldap==2.2.0
4-
django-storages==1.10.1
4+
django-storages==1.11.1

0 commit comments

Comments
 (0)