|
@@ -50,23 +50,24 @@ function upgrade_gogs {
|
50
|
50
|
}
|
51
|
51
|
|
52
|
52
|
function backup_local_gogs {
|
53
|
|
- GIT_DOMAIN_NAME='gogs'
|
54
|
53
|
if grep -q "Gogs domain" $COMPLETION_FILE; then
|
55
|
|
- GIT_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Gogs domain" | awk -F ':' '{print $2}')
|
56
|
|
- fi
|
|
54
|
+ if [ -d /home/git/gogs-repositories ]; then
|
|
55
|
+ GIT_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Gogs domain" | awk -F ':' '{print $2}')
|
57
|
56
|
|
58
|
|
- echo $"Backing up gogs"
|
|
57
|
+ echo $"Backing up gogs"
|
59
|
58
|
|
60
|
|
- function_check backup_database_local
|
61
|
|
- backup_database_local gogs
|
|
59
|
+ function_check backup_database_local
|
|
60
|
+ backup_database_local gogs
|
62
|
61
|
|
63
|
|
- function_check backup_directory_to_usb
|
64
|
|
- backup_directory_to_usb /root/tempgogsdata gogsdata
|
65
|
|
- backup_directory_to_usb $GOPATH/src/github.com/gogits/gogs/custom gogs
|
66
|
|
- backup_directory_to_usb /home/git/gogs-repositories gogsrepos
|
67
|
|
- backup_directory_to_usb /home/git/.ssh gogsssh
|
|
62
|
+ function_check backup_directory_to_usb
|
|
63
|
+ backup_directory_to_usb /root/tempgogsdata gogsdata
|
|
64
|
+ backup_directory_to_usb $GOPATH/src/github.com/gogits/gogs/custom gogs
|
|
65
|
+ backup_directory_to_usb /home/git/gogs-repositories gogsrepos
|
|
66
|
+ backup_directory_to_usb /home/git/.ssh gogsssh
|
68
|
67
|
|
69
|
|
- echo $"Gogs backup complete"
|
|
68
|
+ echo $"Gogs backup complete"
|
|
69
|
+ fi
|
|
70
|
+ fi
|
70
|
71
|
}
|
71
|
72
|
|
72
|
73
|
function backup_remote_gogs {
|