mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
1c62a35710
Summary: Allow the pull daemon to take a list of repositories. By default, pull all repositories. Make some effort to respect pull frequencies, although we'll necessarily suffer a bit if running with only one process. NOTE: We still launch one discovery daemon per working copy, so this only cuts the daemon count in half. Test Plan: - Ran `phd debug pulllocal`, verified behavior. - Ran `pull.php P MTEST SVNTEST --trace`, verified it pulled the repos and ran the right commands. - Ran `phd repository-launch-master`, verified the right daemons launched, checked daemon console. - Ran `phd repository-launch-readonly`, verified the right daemon launched, checked daemon console. Reviewers: btrahan, csilvers, davidreuss Reviewed By: csilvers CC: aran Differential Revision: https://secure.phabricator.com/D2418
51 lines
1.5 KiB
PHP
Executable file
51 lines
1.5 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
$args->setTagline('manually pull working copies');
|
|
$args->setSynopsis(<<<EOHELP
|
|
**pull.php** [__options__] __repository-callsign-or-phid ...__
|
|
Manually pull/fetch working copies for the named repositories.
|
|
EOHELP
|
|
);
|
|
$args->parseStandardArguments();
|
|
$args->parse(
|
|
array(
|
|
array(
|
|
'name' => 'repositories',
|
|
'wildcard' => true,
|
|
),
|
|
));
|
|
|
|
$repo_names = $args->getArg('repositories');
|
|
if (!$repo_names) {
|
|
echo "Specify one or more repositories to pull, by callsign or PHID.\n";
|
|
exit(1);
|
|
}
|
|
|
|
$repos = PhabricatorRepository::loadAllByPHIDOrCallsign($repo_names);
|
|
foreach ($repos as $repo) {
|
|
$callsign = $repo->getCallsign();
|
|
echo "Pulling '{$callsign}'...\n";
|
|
PhabricatorRepositoryPullLocalDaemon::pullRepository($repo);
|
|
}
|
|
echo "Done.\n";
|