Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
27491f93
Commit
27491f93
authored
Apr 11, 2014
by
Ross Smith II
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use old ssh code until higebu's branch is ready, see #1019
parent
dc21bf01
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
16 additions
and
16 deletions
+16
-16
builder/amazon/common/ssh.go
builder/amazon/common/ssh.go
+1
-1
builder/digitalocean/ssh.go
builder/digitalocean/ssh.go
+1
-1
builder/digitalocean/step_create_ssh_key.go
builder/digitalocean/step_create_ssh_key.go
+1
-1
builder/googlecompute/ssh.go
builder/googlecompute/ssh.go
+1
-1
builder/googlecompute/step_create_ssh_key.go
builder/googlecompute/step_create_ssh_key.go
+1
-1
builder/openstack/ssh.go
builder/openstack/ssh.go
+1
-1
builder/qemu/ssh.go
builder/qemu/ssh.go
+1
-1
builder/virtualbox/common/ssh.go
builder/virtualbox/common/ssh.go
+1
-1
builder/vmware/common/ssh.go
builder/vmware/common/ssh.go
+1
-1
builder/vmware/iso/driver_esx5.go
builder/vmware/iso/driver_esx5.go
+1
-1
common/step_connect_ssh.go
common/step_connect_ssh.go
+1
-1
communicator/ssh/communicator.go
communicator/ssh/communicator.go
+1
-1
communicator/ssh/communicator_test.go
communicator/ssh/communicator_test.go
+1
-1
communicator/ssh/keychain.go
communicator/ssh/keychain.go
+1
-1
communicator/ssh/keychain_test.go
communicator/ssh/keychain_test.go
+1
-1
communicator/ssh/password_test.go
communicator/ssh/password_test.go
+1
-1
No files found.
builder/amazon/common/ssh.go
View file @
27491f93
package
common
package
common
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"errors"
"errors"
"fmt"
"fmt"
"github.com/mitchellh/goamz/ec2"
"github.com/mitchellh/goamz/ec2"
...
...
builder/digitalocean/ssh.go
View file @
27491f93
package
digitalocean
package
digitalocean
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/communicator/ssh"
"github.com/mitchellh/packer/communicator/ssh"
...
...
builder/digitalocean/step_create_ssh_key.go
View file @
27491f93
package
digitalocean
package
digitalocean
import
(
import
(
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"crypto/rand"
"crypto/rand"
"crypto/rsa"
"crypto/rsa"
"crypto/x509"
"crypto/x509"
...
...
builder/googlecompute/ssh.go
View file @
27491f93
...
@@ -3,7 +3,7 @@ package googlecompute
...
@@ -3,7 +3,7 @@ package googlecompute
import
(
import
(
"fmt"
"fmt"
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/communicator/ssh"
"github.com/mitchellh/packer/communicator/ssh"
)
)
...
...
builder/googlecompute/step_create_ssh_key.go
View file @
27491f93
package
googlecompute
package
googlecompute
import
(
import
(
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"crypto/rand"
"crypto/rand"
"crypto/rsa"
"crypto/rsa"
"crypto/x509"
"crypto/x509"
...
...
builder/openstack/ssh.go
View file @
27491f93
package
openstack
package
openstack
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"errors"
"errors"
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
...
...
builder/qemu/ssh.go
View file @
27491f93
package
qemu
package
qemu
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/communicator/ssh"
"github.com/mitchellh/packer/communicator/ssh"
...
...
builder/virtualbox/common/ssh.go
View file @
27491f93
package
common
package
common
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/communicator/ssh"
"github.com/mitchellh/packer/communicator/ssh"
...
...
builder/vmware/common/ssh.go
View file @
27491f93
package
common
package
common
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"errors"
"errors"
"fmt"
"fmt"
"io/ioutil"
"io/ioutil"
...
...
builder/vmware/iso/driver_esx5.go
View file @
27491f93
...
@@ -3,7 +3,7 @@ package iso
...
@@ -3,7 +3,7 @@ package iso
import
(
import
(
"bufio"
"bufio"
"bytes"
"bytes"
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"encoding/csv"
"encoding/csv"
"errors"
"errors"
"fmt"
"fmt"
...
...
common/step_connect_ssh.go
View file @
27491f93
package
common
package
common
import
(
import
(
gossh
"code.google.com/p/go
.crypto
/ssh"
gossh
"code.google.com/p/go
sshold
/ssh"
"errors"
"errors"
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
...
...
communicator/ssh/communicator.go
View file @
27491f93
...
@@ -3,7 +3,7 @@ package ssh
...
@@ -3,7 +3,7 @@ package ssh
import
(
import
(
"bufio"
"bufio"
"bytes"
"bytes"
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"errors"
"errors"
"fmt"
"fmt"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
communicator/ssh/communicator_test.go
View file @
27491f93
...
@@ -4,7 +4,7 @@ package ssh
...
@@ -4,7 +4,7 @@ package ssh
import
(
import
(
"bytes"
"bytes"
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
"net"
"net"
"testing"
"testing"
...
...
communicator/ssh/keychain.go
View file @
27491f93
package
ssh
package
ssh
import
(
import
(
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"crypto"
"crypto"
"crypto/dsa"
"crypto/dsa"
"crypto/rsa"
"crypto/rsa"
...
...
communicator/ssh/keychain_test.go
View file @
27491f93
package
ssh
package
ssh
import
(
import
(
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"testing"
"testing"
)
)
...
...
communicator/ssh/password_test.go
View file @
27491f93
package
ssh
package
ssh
import
(
import
(
"code.google.com/p/go
.crypto
/ssh"
"code.google.com/p/go
sshold
/ssh"
"reflect"
"reflect"
"testing"
"testing"
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment