Add nasctl: Go NAS control plane with React frontend

This commit is contained in:
2026-07-05 17:37:19 -04:00
parent 359fd5a160
commit 4f0754ecc5
56 changed files with 6725 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
install -d /var/lib/nasctl
install -m 0755 /usr/local/bin/nasctl /usr/local/bin/nasctl
install -m 0644 /etc/systemd/system/nasctl.service /etc/systemd/system/nasctl.service
systemctl daemon-reload
systemctl enable nasctl.service
echo "nasctl installed. Start with: systemctl start nasctl"