Skip to content

Commit

Permalink
Fix bug in provisioning #6
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel Niklasson committed Dec 8, 2021
1 parent 795c5c3 commit f92c272
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ USAGE:
plcli [global options] command [command options] [arguments...]
VERSION:
1.0
1.1
AUTHOR:
Axel Niklasson <axel.niklasson@live.com>
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func Provision(scriptPath string, hostnames []string, options *util.Options) err
defer wg.Done()

// transfer provision script to node
err := Transfer(options.Slice, hostname, scriptPath, "~/provision.sh")
err := Transfer(options.Slice, hostname, scriptPath, "provision.sh")
if err != nil {
log.Printf("Could not transfer provision script to node %s. Error: %v", hostname, err)
return
Expand Down
2 changes: 1 addition & 1 deletion plcli.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
app := cli.NewApp()
app.Name = "plcli"
app.Usage = "CLI for PlanetLab"
app.Version = "1.0"
app.Version = "1.1"
app.Authors = []cli.Author{{Name: "Axel Niklasson", Email: "axel.r.niklasson@gmail.com"}}

conf := util.GetConf()
Expand Down

0 comments on commit f92c272

Please sign in to comment.