Fix clippy warnings: remove unused imports/variables/functions, derive Default, fix comparisons
This commit is contained in:
11
debian/.debhelper/generated/linux-patch-api/dh_installchangelogs.dch.trimmed
vendored
Normal file
11
debian/.debhelper/generated/linux-patch-api/dh_installchangelogs.dch.trimmed
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
linux-patch-api (1.0.0-1) stable; urgency=medium
|
||||
|
||||
* Initial production release
|
||||
* Secure mTLS-authenticated REST API for remote package management
|
||||
* 15 API endpoints for package install/remove, patch application, system management
|
||||
* Asynchronous job processing with WebSocket status streaming
|
||||
* IP whitelist enforcement and comprehensive audit logging
|
||||
* Systemd integration with security hardening
|
||||
* Supports Debian 11/12, Ubuntu 20.04/22.04/24.04
|
||||
|
||||
-- Echo <echo@moon-dragon.us> Thu, 09 Apr 2026 18:57:12 -0500
|
||||
4
debian/.debhelper/generated/linux-patch-api/installed-by-dh_install
vendored
Normal file
4
debian/.debhelper/generated/linux-patch-api/installed-by-dh_install
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
debian/tmp/usr/bin/linux-patch-api
|
||||
debian/tmp/lib/systemd/system/linux-patch-api.service
|
||||
debian/tmp/etc/linux_patch_api/config.yaml
|
||||
debian/tmp/etc/linux_patch_api/whitelist.yaml
|
||||
0
debian/.debhelper/generated/linux-patch-api/installed-by-dh_installdocs
vendored
Normal file
0
debian/.debhelper/generated/linux-patch-api/installed-by-dh_installdocs
vendored
Normal file
30
debian/.debhelper/generated/linux-patch-api/postinst.service
vendored
Normal file
30
debian/.debhelper/generated/linux-patch-api/postinst.service
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
# Automatically added by dh_installsystemd/13.31
|
||||
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
|
||||
# The following line should be removed in trixie or trixie+1
|
||||
deb-systemd-helper unmask 'linux-patch-api.service' >/dev/null || true
|
||||
|
||||
# was-enabled defaults to true, so new installations run enable.
|
||||
if deb-systemd-helper --quiet was-enabled 'linux-patch-api.service'; then
|
||||
# Enables the unit on first installation, creates new
|
||||
# symlinks on upgrades if the unit file has changed.
|
||||
deb-systemd-helper enable 'linux-patch-api.service' >/dev/null || true
|
||||
else
|
||||
# Update the statefile to add new symlinks (if any), which need to be
|
||||
# cleaned up on purge. Also remove old symlinks.
|
||||
deb-systemd-helper update-state 'linux-patch-api.service' >/dev/null || true
|
||||
fi
|
||||
fi
|
||||
# End automatically added section
|
||||
# Automatically added by dh_installsystemd/13.31
|
||||
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
|
||||
if [ -d /run/systemd/system ]; then
|
||||
systemctl --system daemon-reload >/dev/null || true
|
||||
if [ -n "$2" ]; then
|
||||
_dh_action=restart
|
||||
else
|
||||
_dh_action=start
|
||||
fi
|
||||
deb-systemd-invoke $_dh_action 'linux-patch-api.service' >/dev/null || true
|
||||
fi
|
||||
fi
|
||||
# End automatically added section
|
||||
5
debian/.debhelper/generated/linux-patch-api/prerm.service
vendored
Normal file
5
debian/.debhelper/generated/linux-patch-api/prerm.service
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Automatically added by dh_installsystemd/13.31
|
||||
if [ -z "$DPKG_ROOT" ] && [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
|
||||
deb-systemd-invoke stop 'linux-patch-api.service' >/dev/null || true
|
||||
fi
|
||||
# End automatically added section
|
||||
Reference in New Issue
Block a user