のプロビジョニング フェーズの最後に、vagrant を使用して Stash リポジトリのクローンを作成しようとしています。vagrant up
現在、次vagrant up
のエラーが表示されます。
default: Running: inline script
==> default: Cloning into 'awesome_repo'...
==> default: Permission denied (publickey).
==> default: fatal: Could not read from remote repository.
==> default:
==> default: Please make sure you have the correct access rights
==> default: and the repository exists.
vagrant の公開鍵と秘密鍵を使用するようにプロジェクトを設定しました。 config.ssh.insert_key = false
insecure_private_key
ゲスト マシンの ~/.ssh/ フォルダーにファイルを配置しました。そして、vagrant 公開鍵を Stash Repo に配置しました。
プロビジョナーでその段階に到達すると、何らかの理由で上記のエラーが表示されます。また、ゲスト マシンでこれらの手順を試してvagrant ssh
から に進みましたがgit clone
、同じエラーが発生しています。
これが私のVagrantfile
SSH構成の一部です:
config.ssh.insert_key = false
config.ssh.pty = true
何が間違っているのかわかりません。手がかりはありますか?