Files
vctp2/src/postremove.sh
Nathan Coad 3ceba1a117
Some checks failed
continuous-integration/drone/push Build was killed
add rpm generation code
2026-01-13 20:09:19 +11:00

9 lines
178 B
Bash

#!/bin/bash
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload || :
if [ "$1" -ge 1 ]; then
systemctl try-restart vctp.service || :
fi
fi