mirror of
https://github.com/azlux/dpkg-deb
synced 2024-11-23 06:46:18 +00:00
10 lines
268 B
Bash
Executable File
10 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
chown git: /var/lib/gitea/{data,indexers,log}
|
|
chown root:git /etc/gitea
|
|
|
|
[ -d /run/systemd/system/ ] && systemctl daemon-reload
|
|
[ -d /run/systemd/system/ ] && systemctl enable gitea
|
|
[ -d /run/systemd/system/ ] && systemctl restart gitea
|
|
|
|
exit 0
|