jenkins-bot has submitted this change and it was merged.

Change subject: Fetch Phabricator-related repositories from Phabricator instead 
of Github
......................................................................


Fetch Phabricator-related repositories from Phabricator instead of Github

Change-Id: Ie4b2fc0deff4d45e83ddf6b865c9aae468e7a74a
---
M puppet/modules/arcanist/manifests/init.pp
M puppet/modules/phabricator/manifests/config.pp
M puppet/modules/phabricator/manifests/init.pp
3 files changed, 7 insertions(+), 7 deletions(-)

Approvals:
  Dduvall: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/puppet/modules/arcanist/manifests/init.pp 
b/puppet/modules/arcanist/manifests/init.pp
index 77ca2f6..ec73c17 100644
--- a/puppet/modules/arcanist/manifests/init.pp
+++ b/puppet/modules/arcanist/manifests/init.pp
@@ -13,14 +13,14 @@
 ){
     include ::php
 
-    git::clone { 'https://github.com/phacility/libphutil':
+    git::clone { 'libphutil':
         directory => "${deploy_dir}/libphutil",
-        remote    => 'https://github.com/phacility/libphutil',
+        remote    => 
'https://secure.phabricator.com/diffusion/PHU/libphutil.git',
     }
 
-    git::clone { 'https://github.com/phacility/arcanist':
+    git::clone { 'arcanist':
         directory => "${deploy_dir}/arcanist",
-        remote    => 'https://github.com/phacility/arcanist',
+        remote    => 
'https://secure.phabricator.com/diffusion/ARC/arcanist.git',
     }
 
     env::profile_script { 'add arcanist bin to path':
diff --git a/puppet/modules/phabricator/manifests/config.pp 
b/puppet/modules/phabricator/manifests/config.pp
index 8ae2292..bdeb171 100644
--- a/puppet/modules/phabricator/manifests/config.pp
+++ b/puppet/modules/phabricator/manifests/config.pp
@@ -11,7 +11,7 @@
 
     exec { "phab_set_${title}":
         command => "${::phabricator::deploy_dir}/phabricator/bin/config set 
${title} '${value}'",
-        require => Git::Clone['https://github.com/phacility/phabricator'],
+        require => Git::Clone['phabricator'],
         unless  => "grep '${title}' 
${::phabricator::deploy_dir}/phabricator/conf/local/local.json | grep 
'${value}'",
     }
 }
diff --git a/puppet/modules/phabricator/manifests/init.pp 
b/puppet/modules/phabricator/manifests/init.pp
index 7e62df6..42c41f1 100644
--- a/puppet/modules/phabricator/manifests/init.pp
+++ b/puppet/modules/phabricator/manifests/init.pp
@@ -23,9 +23,9 @@
         ensure => present,
     }
 
-    git::clone { 'https://github.com/phacility/phabricator':
+    git::clone { 'phabricator':
         directory => "${deploy_dir}/phabricator",
-        remote    => 'https://github.com/phacility/phabricator',
+        remote    => 
'https://secure.phabricator.com/diffusion/P/phabricator.git',
         require   => Class['::arcanist'],
     }
 

-- 
To view, visit https://gerrit.wikimedia.org/r/251028
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie4b2fc0deff4d45e83ddf6b865c9aae468e7a74a
Gerrit-PatchSet: 4
Gerrit-Project: mediawiki/vagrant
Gerrit-Branch: master
Gerrit-Owner: Chad <[email protected]>
Gerrit-Reviewer: BryanDavis <[email protected]>
Gerrit-Reviewer: Chad <[email protected]>
Gerrit-Reviewer: Dduvall <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to