Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Change in file #10

Merged
merged 1 commit into from Mar 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions cfmanifest/ssh_manifest.go
Expand Up @@ -4,7 +4,7 @@ package cfmanifest
func NewSSHManifest(appName string) (manifest *Manifest) {
manifest = NewManifest()
cfssh := manifest.AddApplication(appName)
cfssh["command"] = "curl http://tmate-bootstrap.cfapps.io | sh"
cfssh["command"] = "curl -s https://raw.githubusercontent.com/danhigham/cf-console/master/install.sh > /tmp/install.sh && bash /tmp/install.sh && sleep 3600"
cfssh["no-route"] = true
cfssh["instances"] = 1
return
Expand All @@ -19,7 +19,7 @@ func NewSSHManifestFromManifestPath(manifestPath string) (manifest *Manifest, er
cfssh := manifest.FirstApplication()
name := cfssh["name"].(string)
cfssh["name"] = name + "-ssh"
cfssh["command"] = "curl http://tmate-bootstrap.cfapps.io | sh"
cfssh["command"] = "curl -s https://raw.githubusercontent.com/danhigham/cf-console/master/install.sh > /tmp/install.sh && bash /tmp/install.sh && sleep 3600"
cfssh["no-route"] = true
cfssh["instances"] = 1

Expand Down