Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Deploys and configures https://github.com/netbox-community/netbox[NetBox], an IP

This role will deploy NetBox within its own virtualenv either by release tarball or via git using uWSGI as the application server.

Supports CentOS 7, 8 / RHEL 9 / Debian 9, 10, 11, 12 / Ubuntu 16, 18, 20 and 22.
Supports CentOS 7, 8 / RHEL 9 / Debian 9, 10, 11, 12, 13 / Ubuntu 16, 18, 20 and 22.

Note that this role is slightly opinionated and differs from installation instructions from the NetBox documentation.
The main differences are:
Expand Down
1 change: 1 addition & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ galaxy_info:
- stretch
- bullseye
- bookworm
- trixie
- name: EL
versions:
- 7
Expand Down
21 changes: 21 additions & 0 deletions vars/debian-13.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
_netbox_packages:
- libxml2-dev
- libxslt1-dev
- libffi-dev
- libjpeg-dev
- graphviz
- libpq-dev
- libssl-dev
- systemd-cron
_netbox_python_packages:
- python3.13
- python3.13-dev
- python3-venv
- python3-pip
- python3-psycopg2 # used by ansible's postgres modules
_netbox_python_binary: /usr/bin/python3
_netbox_ldap_packages:
- libldap2-dev
- libsasl2-dev
netbox_uwsgi_in_venv: true
Loading