9 lines
292 B
Plaintext
9 lines
292 B
Plaintext
|
#!/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"
|