mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 13:59:40 +00:00
New modules: - secubox-backup v1.0.0: System config and LXC container backup/restore - secubox-watchdog v1.0.0: Container, service, and endpoint monitoring - secubox-tor v1.0.0: Tor circuits and hidden services management - secubox-exposure v1.0.0: Unified exposure settings (Tor, SSL, DNS, Mesh) - secubox-mitmproxy v1.0.0: WAF with traffic inspection, alerts, and bans - secubox-traffic v1.0.0: TC/CAKE QoS traffic shaping per interface All modules include: - FastAPI backend with JWT authentication - Catppuccin-styled frontend dashboard - Debian packaging (systemd, postinst, prerm) - Menu integration via menu.d JSON Total modules: 41 (was 35) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
171 B
Bash
Executable File
9 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ "$1" = "remove" ]; then
|
|
systemctl stop secubox-backup.service || true
|
|
systemctl disable secubox-backup.service || true
|
|
fi
|
|
#DEBHELPER#
|
|
exit 0
|