kvm-npu (new): - debian/kvm-npu/ with control, postinst, prerm - config.yaml with standard model paths (/usr/share/kvm-npu/models/) - systemd service with security hardening (ProtectSystem, PrivateTmp) - Build script copies OCR + face models into package kvm-privacy (filled): - Was an empty shell (systemd-only, no binary) - Add binary install path, pii_rules.yaml config - New systemd service pointing to /usr/local/bin/info-privacy-rs - Remove hardcoded /home/pi/Desktop paths from info-privacy.service Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
170 B
Bash
Executable File
9 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
systemctl daemon-reload
|
|
systemctl enable npu-daemon.service
|
|
systemctl start npu-daemon.service || true
|
|
fi
|