8 lines
205 B
Bash
8 lines
205 B
Bash
|
#/bin/sh
|
||
|
FILE=/etc/gitea-page/config.yml
|
||
|
if [ -f "$FILE" ]; then
|
||
|
systemctl daemon-reload
|
||
|
systemctl restart go-mail-admin
|
||
|
else
|
||
|
cp /etc/gitea-page/config.yml.example /etc/gitea-page/config.yml
|
||
|
fi
|