This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-migration/migrate.sh

20 lines
353 B
Bash
Executable File

#/usr/bin/env bash -e
DUMP=gitea-dump-1633035257
USER=gitea
DATABASE=gitea
cd /tmp/
unzip ${DUMP}.zip
unzip gitea-repo.zip
systemctl stop gitea
rm -r /var/lib/gitea/repositories/*
mv gitea-repositories/* /var/lib/gitea/repositories/
chown -R gitea:gitea /var/lib/gitea
sudo -u gitea psql -U $USER -d $DATABASE < gitea-db.sql
systemctl start gitea