cloudfoundry-community-attic / cf-services-release

Cloud Foundry services release (includes mysql V1 service and gateway only)
Apache License 2.0
9 stars 25 forks source link

./update fails - Failed to recurse into submodule path 'src/services' #4

Closed drnic closed 11 years ago

drnic commented 11 years ago
# git clone https://github.com/cloudfoundry/cf-services-release.git
Cloning into 'cf-services-release'...
remote: Counting objects: 419, done.
remote: Compressing objects: 100% (222/222), done.
remote: Total 419 (delta 198), reused 402 (delta 182)
Receiving objects: 100% (419/419), 189.56 KiB, done.
Resolving deltas: 100% (198/198), done.
# cd cf-services-release/

# ./update
+ git pull
Already up-to-date.
+ git submodule foreach --recursive git submodule sync
+ git submodule update --init --recursive
Submodule 'shared' (https://github.com/cloudfoundry/shared-release-packages.git) registered for path 'shared'
Submodule 'src/services' (https://github.com/cloudfoundry/vcap-services.git) registered for path 'src/services'
Submodule 'src/services_warden' (https://github.com/cloudfoundry/warden.git) registered for path 'src/services_warden'
Submodule 'src/tests' (https://github.com/cloudfoundry/vcap-yeti.git) registered for path 'src/tests'
Cloning into 'shared'...
remote: Counting objects: 1481, done.
remote: Compressing objects: 100% (895/895), done.
remote: Total 1481 (delta 555), reused 1481 (delta 555)
Receiving objects: 100% (1481/1481), 341.18 KiB, done.
Resolving deltas: 100% (555/555), done.
Submodule path 'shared': checked out '9825f787920a9337202a3169fbaa0e49e4175507'
Cloning into 'src/services'...
remote: Counting objects: 18349, done.
remote: Compressing objects: 100% (4945/4945), done.
remote: Total 18349 (delta 12021), reused 17201 (delta 11117)
Receiving objects: 100% (18349/18349), 34.81 MiB | 2.58 MiB/s, done.
Resolving deltas: 100% (12021/12021), done.
Submodule path 'src/services': checked out 'ab334945b03735e1fd52cf926f12f507d79c7ec5'
Submodule 'govendor' (http://github.com/cloudfoundry/govendor.git) registered for path 'govendor'
Submodule 'vendor/integration-test-support' (git@github.com:cloudfoundry/integration-test-support.git) registered for path 'vendor/integration-test-support'
Cloning into 'govendor'...
remote: Counting objects: 425, done.
remote: Compressing objects: 100% (272/272), done.
remote: Total 425 (delta 113), reused 420 (delta 109)
Receiving objects: 100% (425/425), 353.65 KiB, done.
Resolving deltas: 100% (113/113), done.
Submodule path 'govendor': checked out '6c5ff67e8aacc2847dab3239001fa2513af54558'
Cloning into 'vendor/integration-test-support'...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Clone of 'git@github.com:cloudfoundry/integration-test-support.git' into submodule path 'vendor/integration-test-support' failed
Cloning into 'src/services_warden'...
remote: Counting objects: 7391, done.
remote: Compressing objects: 100% (3819/3819), done.
remote: Total 7391 (delta 3624), reused 6748 (delta 3084)
Receiving objects: 100% (7391/7391), 1.83 MiB | 211 KiB/s, done.
Resolving deltas: 100% (3624/3624), done.
Submodule path 'src/services_warden': checked out 'cc07d604dafc25ac8f7f17af42ab0152c52a7b35'
Cloning into 'src/tests'...
remote: Counting objects: 4358, done.
remote: Compressing objects: 100% (2433/2433), done.
remote: Total 4358 (delta 2364), reused 3652 (delta 1743)
Receiving objects: 100% (4358/4358), 1.14 MiB, done.
Resolving deltas: 100% (2364/2364), done.
Submodule path 'src/tests': checked out 'bfef140a6555c92f34eccb6202f42daaf0baacb1'
Submodule 'assets' (https://github.com/cloudfoundry/vcap-test-assets.git) registered for path 'assets'
Cloning into 'assets'...
remote: Counting objects: 3877, done.
remote: Compressing objects: 100% (2216/2216), done.
remote: Total 3877 (delta 1292), reused 3624 (delta 1136)
Receiving objects: 100% (3877/3877), 11.15 MiB | 10.83 MiB/s, done.
Resolving deltas: 100% (1292/1292), done.
Submodule path 'assets': checked out 'dfacc37c8136726d37a67f90e539028a807bbc5a'
Failed to recurse into submodule path 'src/services'
mdub commented 11 years ago

I just hit the same problem. Looks like src/services/.gitmodules contains a secure Git URL; changing it to a read-only HTTP URL worked for me:

-       url = git@github.com:cloudfoundry/integration-test-support.git
+       url = http://github.com/cloudfoundry/integration-test-support.git
jfoley commented 11 years ago

@drnic - This looks like a stale issue, and no longer has this problem. We are going to close this, but let us know if it is still failing.

@aramprice / @jfoley