diff options
Diffstat (limited to 'site/variables.template.php')
-rw-r--r-- | site/variables.template.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/site/variables.template.php b/site/variables.template.php index b07f0c5..98bda0b 100644 --- a/site/variables.template.php +++ b/site/variables.template.php @@ -52,12 +52,14 @@ "http://www.libreboot.org/release/", "https://freedombox.org/libreboot/", "http://www.mirrorservice.org/sites/libreboot.org/release/", - "ftp://ftp.mirrorservice.org/sites/libreboot.org/release/", - "rsync://rsync.mirrorservice.org/libreboot.org/release/" + "ftp://ftp.mirrorservice.org/sites/libreboot.org/release/" ); - /* rsync command (for mirroring the project) */ - $lbRsyncCommand = "rsync -avxP --delete --stats libreboot.org::mirrormirror /path/to/webserver/directory/libreboot/"; + /* rsync servers. Put the main one first */ + $lbRsyncServer = array ( + "libreboot.org::mirrormirror", + "rsync://rsync.mirrorservice.org/libreboot.org/release/" + ); /* Bug tracker URL */ $lbBugTrackerAddress = "http://projects.mtjm.eu/projects/libreboot"; |