mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
07cf8925f9
systemd has a feature called socket activation where initially systemd manages and listens on ports/uds and only invokes a service when traffic appears. to then hand over the involved sockets, systemd will pass the relevant FDs into the invoked process and defines them in the environment. use coreos/go-systemd to grab the active listeners passed by systemd and use them to serve the api routes. only one listener may be specified right now as we also only support one -listen argument for the binary. this allows admins to craft a systemd socket and service file for aptly where systemd manages the socket, its permission and its live time, and lazy start aptly when needed.
14 lines
249 B
Python
14 lines
249 B
Python
"""
|
|
Testing aptly REST API
|
|
"""
|
|
|
|
from .repos import *
|
|
from .files import *
|
|
from .publish import *
|
|
from .version import *
|
|
from .graph import *
|
|
from .snapshots import *
|
|
from .packages import *
|
|
from .unix_socket import *
|
|
from .systemd_handover import *
|