-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathssh_template.go
130 lines (115 loc) · 3.14 KB
/
ssh_template.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package provider
import (
"fmt"
"os"
"path/filepath"
"text/template"
"github.com/renproject/darknode-cli/util"
)
type sshTerraform struct {
Name string
User string
Hostname string
PubKeyPath string
RootPriKeyPath string
ConfigPath string
ServiceFile string
LatestVersion string
}
func (p providerSsh) tfConfig(name, latestVersion string) error {
tf := sshTerraform{
Name: name,
User: p.user,
Hostname: p.hostname,
ConfigPath: fmt.Sprintf("~/.darknode/darknodes/%v/config.json", name),
PubKeyPath: fmt.Sprintf("~/.darknode/darknodes/%v/ssh_keypair.pub", name),
RootPriKeyPath: fmt.Sprintf(p.priKeyPath),
ServiceFile: darknodeService,
LatestVersion: latestVersion,
}
t, err := template.New("ssh").Parse(sshTemplate)
if err != nil {
return err
}
tfFile, err := os.Create(filepath.Join(util.NodePath(name), "main.tf"))
if err != nil {
return err
}
return t.Execute(tfFile, tf)
}
var sshTemplate = `
resource "null_resource" "darknode" {
provisioner "remote-exec" {
inline = [
"set -x",
"until sudo apt update; do sleep 4; done",
"sudo adduser darknode --gecos \",,,\" --disabled-password",
"sudo rsync --archive --chown=darknode:darknode ~/.ssh /home/darknode",
"until sudo apt-get -y update; do sleep 4; done",
"until sudo apt-get -y upgrade; do sleep 4; done",
"until sudo apt-get -y autoremove; do sleep 4; done",
"until sudo apt-get install ufw; do sleep 4; done",
"sudo ufw limit 22/tcp",
"sudo ufw allow 18514/tcp",
"sudo ufw allow 18515/tcp",
"sudo ufw --force enable",
"until sudo apt-get -y install jq; do sleep 4; done",
]
connection {
host = "{{.Hostname}}"
type = "ssh"
user = "{{.User}}"
private_key = file("{{.RootPriKeyPath}}")
}
}
provisioner "file" {
source = "{{.ConfigPath}}"
destination = "$HOME/config.json"
connection {
host = "{{.Hostname}}"
type = "ssh"
user = "darknode"
private_key = file("{{.RootPriKeyPath}}")
}
}
provisioner "remote-exec" {
inline = [
"set -x",
"mkdir -p $HOME/.darknode/bin",
"mkdir -p $HOME/.config/systemd/user",
"mv $HOME/config.json $HOME/.darknode/config.json",
"curl -sL https://www.github.com/renproject/darknode-release/releases/latest/download/darknode > ~/.darknode/bin/darknode",
"chmod +x ~/.darknode/bin/darknode",
"echo {{.LatestVersion}} > ~/.darknode/version",
<<EOT
echo "{{.ServiceFile}}" > ~/.config/systemd/user/darknode.service
EOT
,
"loginctl enable-linger darknode",
"systemctl --user enable darknode.service",
"systemctl --user start darknode.service",
]
connection {
host = "{{.Hostname}}"
type = "ssh"
user = "darknode"
private_key = file("{{.RootPriKeyPath}}")
}
}
provisioner "file" {
source = "{{.PubKeyPath}}"
destination = "$HOME/.ssh/authorized_keys"
connection {
host = "{{.Hostname}}"
type = "ssh"
user = "darknode"
private_key = file("{{.RootPriKeyPath}}")
}
}
}
output "provider" {
value = "ssh"
}
output "ip" {
value = "{{.Hostname}}"
}`