Add support for Ubuntu 22.04 "jammy"

pull/85/head
Andrei Belov 2022-09-14 13:26:37 +04:00
parent fa4fb352ee
commit aeddcd2336
No known key found for this signature in database
GPG Key ID: E82C1118AF94DF6E
3 changed files with 40 additions and 1 deletions

View File

@ -0,0 +1,34 @@
Source: nginx-amplify-agent
Homepage: https://github.com/nginxinc/nginx-amplify-agent
Maintainer: NGINX Packaging <nginx-packaging@f5.com>
Section: python
Priority: optional
Build-Depends: debhelper (>= 13),
dpkg-dev (>= 1.19),
python3,
dh-python
Standards-Version: 4.5.0
Package: nginx-amplify-agent
Description: Agent for NGINX Amplify monitoring platform
The NGINX Amplify Agent is a small, Python application that provides
system and NGINX metric collection. It is part of NGINX Amplify -
the monitoring and configuration assistance service for NGINX.
.
This package installs and runs NGINX Amplify Agent daemon.
.
See http://nginx.com/amplify for more information
Architecture: any
Depends: ${misc:Depends},
${python3:Depends},
python3-daemon,
python3-setproctitle,
python3-greenlet,
python3-gevent,
python3-requests,
python3-ujson,
python3-netifaces,
python3-pymysql,
python3-psutil,
lsb-release,
adduser

View File

@ -0,0 +1,4 @@
netaddr==0.8.0
flup==1.0.3
crossplane==0.5.7
rstr==3.0.0

View File

@ -16,7 +16,8 @@ COMPAT_LEVELS = {
'bionic': 11,
'buster': 12,
'focal': 12,
'bullseye': 13
'bullseye': 13,
'jammy': 13
}