- Add cargo-deb metadata to socktop and socktop_agent Cargo.toml - Create systemd service file for socktop_agent - Add postinst/postrm maintainer scripts for user/group management - Create GitHub Actions workflow to build .deb packages for AMD64 and ARM64 - Add comprehensive documentation in docs/DEBIAN_PACKAGING.md - Packages will be available as artifacts on every push - Automatic GitHub releases for version tags
28 lines
578 B
Desktop File
28 lines
578 B
Desktop File
[Unit]
|
|
Description=Socktop Agent - Remote System Monitor
|
|
Documentation=https://github.com/jasonwitty/socktop
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/socktop_agent --port 3000
|
|
Environment=RUST_LOG=info
|
|
# Optional authentication token:
|
|
# Environment=SOCKTOP_TOKEN=changeme
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
User=socktop
|
|
Group=socktop
|
|
NoNewPrivileges=true
|
|
|
|
# Security hardening
|
|
PrivateTmp=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
ReadWritePaths=/var/lib/socktop
|
|
StateDirectory=socktop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|