-
Notifications
You must be signed in to change notification settings - Fork 2
/
restore.php
51 lines (34 loc) · 1.08 KB
/
restore.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*******************************************************************************
*
* @author : Dominik Bonsch <[email protected]>
* @date :
* @copyright : Webfrap Developer Network <[email protected]>
* @project : Webfrap Web Frame Application
* @projectUrl : http://webfrap.net
*
* @licence : BSD License see: LICENCE/BSD Licence.txt
*
* @version: @package_version@ Revision: @package_revision@
*
* Changes:
*
*******************************************************************************/
// die Basis Logik einbinden
// hier wird auch das entsprechende conf / settingsfile eingebunden
// in welchem die hier verwendetetn Variablen vorhanden sind.
include 'wbf/core.php';
Console::head( "Start sync", true );
// eine Temporäre HG RC Datei erstellen, wird benötigt
// um die Passwörter nicht in die URL packen zu müssen oder bei Proxies
Hg::createTmpRc
(
$repoRoot,
$syncRepos,
$displayName,
$repoUser,
$repoPwd
);
Hg::sync( $syncRepos, $contactMail );
Fs::chown( $repoRoot, $repoOwner );
Console::footer( "Finished sync ", true );