summaryrefslogtreecommitdiff
path: root/gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh')
-rw-r--r--gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh b/gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh
deleted file mode 100644
index 85618811..00000000
--- a/gitlab-server/usr/share/gitlab-install/gitlab-remote-backup.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# Copy relevant files of a Baserock Gitlab instance out of the instance.
-#
-# Usage: backup.sh ADDR
-# where ADDR is the address (domain name, IP address) of the instance.
-# The files are copied to the current directory.
-
-set -eux
-
-ADDR="$1"
-
-backup()
-{
- rsync -ahHS --delete "root@$ADDR:$1" "$2"
-}
-
-mkdir -p dumps repositories uploads
-backup /home/postgres/dumps/. dumps/.
-backup /home/git/repositories/. repositories/.
-backup /home/git/gitlab/public/uploads/. uploads/.
-