-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote-main.go
90 lines (71 loc) · 1.7 KB
/
remote-main.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
package main
import (
"fmt"
"log"
"github.com/k0sproject/rig"
"github.com/weakpixel/aig/pkg/ansible"
"github.com/weakpixel/aig/pkg/module"
)
func main() {
r, err := ansible.NewRemote(&rig.SSH{
Address: "orko.run",
// User: "root",
// KeyPath: "/Users/dkuffner/.ssh/orko-run",
// PasswordCallback: func() (string, error) {
// fmt.Println("Enter password:")
// pass, err := terminal.ReadPassword(int(syscall.Stdin))
// return string(pass), err
// },
})
if err != nil {
log.Fatal(err)
}
// c := module.NewCommand()
// c.Params.Cmd = "find"
// c.Params.Argv = []string{"/tmp"}
// f := module.NewFind()
// f.Params.Paths = []string{"/var/lib/"}
// f.Params.
// c := module.NewApt()
// c.Params.Name = []string{"jq"}
// c.Params.State = "present"
// // c.Params.Service
// res, err := ansible.ExecuteRemote2(r, c)
// if err != nil {
// log.Fatal(err)
// }
// fmt.Println(res)
// fmt.Println("--------")
// c = module.NewApt()
// c.Params.Name = []string{"jq"}
// c.Params.State = "absent"
// // c.Params.Service
// res, err = ansible.ExecuteRemote2(r, c)
// if err != nil {
// log.Fatal(err)
// }
// fmt.Println(res)
// fmt.Println("--------")
g := module.NewGit()
g.Params.Clone = true
g.Params.Dest = "/tmp/clone"
g.Params.Repo = "https://github.com/k0sproject/rig.git"
res, err := ansible.ExecuteRemote(r, g)
if err != nil {
log.Fatal(err)
}
fmt.Println(res)
fmt.Println("--------")
s := module.NewSetup()
res, err = ansible.ExecuteRemote(r, s)
if err != nil {
log.Fatal(err)
}
fmt.Println(res)
fmt.Println("--------")
// fmt.Println(c.Result.)
// fmt.Println(c.Result.Msg)
// for _, f := range f.Result.Files {
// fmt.Println(f)
// }
}