You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
198 B
13 lines
198 B
6 years ago
|
#!/bin/bash
|
||
|
# forksand-gitea-dump
|
||
|
#
|
||
|
# This backups the gitea files and database to
|
||
|
# /tmp/gitea-dump-XXX/gitea-repo.zip
|
||
|
#
|
||
|
# --tempdir=/foo
|
||
|
|
||
|
set -x
|
||
|
|
||
|
sudo -u gitea gitea dump -c /etc/gitea/gitea.ini
|
||
|
|