Add support for Ubuntu 22.04 "jammy"
parent
fa4fb352ee
commit
aeddcd2336
|
@ -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
|
|
@ -0,0 +1,4 @@
|
||||||
|
netaddr==0.8.0
|
||||||
|
flup==1.0.3
|
||||||
|
crossplane==0.5.7
|
||||||
|
rstr==3.0.0
|
|
@ -16,7 +16,8 @@ COMPAT_LEVELS = {
|
||||||
'bionic': 11,
|
'bionic': 11,
|
||||||
'buster': 12,
|
'buster': 12,
|
||||||
'focal': 12,
|
'focal': 12,
|
||||||
'bullseye': 13
|
'bullseye': 13,
|
||||||
|
'jammy': 13
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue