Skip to content

Commit 32a897d

Browse files
committed
rename plugin
1 parent 18b5253 commit 32a897d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+81
-80
lines changed

.devcontainer/Dockerfile-plugin_dev

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VARIANT=latest
1+
ARG VARIANT=v3.2-2.1.0
22

33
FROM netboxcommunity/netbox:${VARIANT}
44

@@ -21,7 +21,7 @@ ARG USER_GID=$USER_UID
2121
RUN useradd -md /home/vscode -s /usr/bin/zsh -u $USER_UID $USERNAME \
2222
&& usermod -aG sudo $USERNAME \
2323
&& echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers \
24-
&& mkdir /opt/netbox/netbox/netbox-access-lists \
24+
&& mkdir /opt/netbox/netbox/netbox-acls \
2525
&& chown $USERNAME:$USERNAME /opt/netbox /etc/netbox /opt/unit -R
2626

2727
USER $USERNAME
@@ -32,7 +32,7 @@ RUN wget --quiet https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/inst
3232
COPY .bashrc /home/vscode/.bashrc
3333
COPY .zshrc /home/vscode/.zshrc
3434

35-
WORKDIR /opt/netbox/netbox/netbox-access-lists
35+
WORKDIR /opt/netbox/netbox/netbox-acls
3636

3737
USER root
3838

.devcontainer/configuration/plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
66

77
PLUGINS = [
8-
"netbox_access_lists",
8+
"netbox_acls",
99
]
1010

1111
PLUGINS_CONFIG = {
12-
"netbox_access_lists": {},
12+
"netbox_acls": {},
1313
}

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"docker-compose.override.yml"
99
],
1010
"service": "netbox",
11-
//"workspaceMount": "source=${localWorkspaceFolder},target=/opt/netbox/netbox/netbox-access-lists,type=bind,consistency=cached",
12-
"workspaceFolder": "/opt/netbox/netbox/netbox-access-lists",
11+
//"workspaceMount": "source=${localWorkspaceFolder},target=/opt/netbox/netbox/netbox-acls,type=bind,consistency=cached",
12+
"workspaceFolder": "/opt/netbox/netbox/netbox-acls",
1313

1414
"overrideCommand":false,
1515

.devcontainer/docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ services:
77
ports:
88
- 8000:8080
99
volumes:
10-
- ../:/opt/netbox/netbox/netbox-access-lists
10+
- ../:/opt/netbox/netbox/netbox-acls
1111
- ~/.gitconfig:/home/vscode/.gitconfig:z,ro
1212
- ~/.ssh:/home/vscode/.ssh

.devcontainer/env/netbox.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ SUPERUSER_API_TOKEN=0123456789abcdef0123456789abcdef01234567
1919
SUPERUSER_EMAIL=admin@example.com
2020
SUPERUSER_NAME=admin
2121
SUPERUSER_PASSWORD=admin
22+
STARTUP_SCRIPTS=false
2223
WEBHOOKS_ENABLED=true

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ body:
1111
installation.
1212
1313
- Check the release notes:
14-
https://github.com/ryanmerolle/netbox-access-lists/releases
14+
https://github.com/ryanmerolle/netbox-acls/releases
1515
- Look through the issues already resolved:
16-
https://github.com/ryanmerolle/netbox-access-lists/issues?q=is%3Aclosed
16+
https://github.com/ryanmerolle/netbox-acls/issues?q=is%3Aclosed
1717
- Post to Github Discussions if you need setup or usage help that is not a bug:
18-
https://github.com/ryanmerolle/netbox-access-lists/discussions
18+
https://github.com/ryanmerolle/netbox-acls/discussions
1919
- Join the `#netbox` channel on our Slack:
2020
https://join.slack.com/t/netdev-community/shared_invite/zt-mtts8g0n-Sm6Wutn62q_M4OdsaIycrQ
2121

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
blank_issues_enabled: false
33
contact_links:
44
#- name: 📕 Plugin Documentation
5-
# url: https://netbox-access-lists.readthedocs.io
5+
# url: https://netbox-acls.readthedocs.io
66
# about: "Please refer to the documentation before raising a bug or feature request."
77
- name: 📖 Contributing Policy
8-
url: https://github.com/ryanmerolle/netbox-access-lists/blob/dev/CONTRIBUTING.md
8+
url: https://github.com/ryanmerolle/netbox-acls/blob/dev/CONTRIBUTING.md
99
about: "Please read through our contributing policy before opening an issue or pull request"
1010
- name: 💬 Community Slack
1111
url: https://netdev.chat/

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
**NOTE:** This form is only for submitting well-formed proposals to extend or modify
1111
NetBox in some way. If you're trying to solve a problem but can't figure out how, or if
1212
you still need time to work on the details of a proposed new feature, please start a
13-
[discussion](https://github.com/ryanmerolle/netbox-access-lists/discussions) instead.
13+
[discussion](https://github.com/ryanmerolle/netbox-acls/discussions) instead.
1414
- type: input
1515
attributes:
1616
label: NetBox version

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
## Reporting Bugs
44

55
* First, ensure that you're running the [latest stable version](https://github.com/netbox-community/netbox/releases)
6-
of NetBox or this plugin [latest stable version](https://github.com/ryanmerolle/netbox-access-lists/releases).
6+
of NetBox or this plugin [latest stable version](https://github.com/ryanmerolle/netbox-acls/releases).
77
If you're running an older version, it's possible that the bug has already been fixed
88
or you are running a version of the plugin not tested with the NetBox version
99
you are running [Compatibility Matrix](./README.md#compatibility).
1010

11-
* Next, check the GitHub [issues list](https://github.com/ryanmerolle/netbox-access-lists/issues)
11+
* Next, check the GitHub [issues list](https://github.com/ryanmerolle/netbox-acls/issues)
1212
to see if the bug you've found has already been reported. If you think you may
1313
be experiencing a reported issue that hasn't already been resolved, please
1414
click "add a reaction" in the top right corner of the issue and add a thumbs
@@ -27,7 +27,7 @@ provide all information request in the issue template, including:
2727

2828
## Feature Requests
2929

30-
* First, check the GitHub [issues list](https://github.com/ryanmerolle/netbox-access-lists/issues)
30+
* First, check the GitHub [issues list](https://github.com/ryanmerolle/netbox-acls/issues)
3131
to see if the feature you're requesting is already listed. (Be sure to search
3232
closed issues as well, since some feature requests have been rejected.) If the
3333
feature you'd like to see has already been requested and is open, click "add a

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include README.md
22
include LICENSE
3-
recursive-include netbox_access_lists/templates *
4-
recursive-include netbox_access_lists/static *
3+
recursive-include netbox_acls/templates *
4+
recursive-include netbox_acls/static *

0 commit comments

Comments
 (0)