(root)/sync-mirrors.sh @ 1560 – Rev 1472
Rev 1606 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1472 |
mateusz.vi |
1 |
#!/bin/sh
|
|
|
2 |
|
|
|
3 |
# SvarDOS subversion repostories are mirrored for extra safety. This script
|
|
|
4 |
# synchronizes the mirrors.
|
|
|
5 |
# This requires specific credentials, hence at this time it can be executed
|
|
|
6 |
# only by me (Mateusz).
|
|
|
7 |
|
|
|
8 |
# sync the system repo to the OSDN mirror
|
|
|
9 |
svnsync sync svn+ssh://mateuszviste@svn.osdn.net/svnroot/svardos-mirror
|
|
|
10 |
|
|
|
11 |
# sync the packages repo to my HelixTeam hub account
|
|
|
12 |
svnsync sync svn+ssh://hth@helixteamhub.cloud/mateuszviste/projects/svardos-packages-mirror/repositories/subversion/packages
|
|
|
13 |
|
|
|
14 |
echo "done."
|