Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
58386b0699 | |||
09d1959ce6 | |||
e7260b9412 | |||
cd613e50ea |
3 changed files with 13 additions and 3 deletions
|
@ -36,6 +36,8 @@ nfpms:
|
|||
dst: /etc/gitea-page/nginx-config-template.txt.example
|
||||
- src: data/info.txt
|
||||
dst: /var/gite-page
|
||||
- src: data/gitea-page.service
|
||||
dst: /etc/systemd/system/gitea-page.service
|
||||
scripts:
|
||||
postinstall: "scripts/postinstall.sh"
|
||||
changelog:
|
||||
|
|
|
@ -4,8 +4,8 @@ After=syslog.target
|
|||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=gomailadmin
|
||||
ExecStart=/usr/local/bin/gitea-page
|
||||
User=root
|
||||
ExecStart=/usr/bin/gitea-page
|
||||
SyslogIdentifier=gitea-page
|
||||
StandardOutput=syslog
|
||||
StandardError=syslog
|
||||
|
|
|
@ -2,7 +2,15 @@
|
|||
FILE=/etc/gitea-page/config.yml
|
||||
if [ -f "$FILE" ]; then
|
||||
systemctl daemon-reload
|
||||
systemctl restart go-mail-admin
|
||||
systemctl restart gitea-page
|
||||
else
|
||||
cp /etc/gitea-page/config.yml.example /etc/gitea-page/config.yml
|
||||
fi
|
||||
|
||||
|
||||
FILE=/etc/gitea-page/nginx-config-template.txt.example
|
||||
if [ -f "$FILE" ]; then
|
||||
echo "Dont update config"
|
||||
else
|
||||
cp /etc/gitea-page/nginx-config-template.txt.example /etc/gitea-page/nginx-config-template.txt
|
||||
fi
|
Loading…
Reference in a new issue