add rpm generation code
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2026-01-13 20:09:19 +11:00
parent a81613a8c2
commit 3ceba1a117
22 changed files with 388 additions and 290 deletions

10
src/postinstall.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload || :
if [ "$1" -eq 1 ]; then
systemctl enable --now vctp.service || :
else
systemctl try-restart vctp.service || :
fi
fi