gitea/scripts/systemd/persist

9 lines
292 B
Bash
Executable File

#!/bin/bash
ServiceName=gitea
Instance=$1
[[ ! $1 ]] && echo warning no instance supplied using default && Instance=default
Service=$ServiceName@$Instance
systemctl is-active --quiet $Service && \
sudo systemctl enable $Service || \
echo "can't persist $Instance as it must be running first"