Skip to content

Commit 98c6c31

Browse files
committed
Merge pull request #36 from QuentinPerez/patch-4
netstat loop
2 parents 16f682a + 1c42fe5 commit 98c6c31

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ $ curl --silent http://212.47.248.251 | head -n1 # you can also open your browse
146146

147147
### master (unreleased)
148148

149+
* Fix provisionning error with xenial
150+
* `docker-machine ls` displays the commercial-type
149151
* Switch default image to **Ubuntu Xenial**
150152
* Add `--scaleway-image` ([#22](https://github.com/scaleway/docker-machine-driver-scaleway/issues/22))
151153
* Add `--scaleway-debug`

driver/scaleway.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func (d *Driver) DriverName() string {
5050
if d.CommercialType == "" {
5151
return "scaleway"
5252
}
53-
return fmt.Sprintf("scaleway (%v)", d.CommercialType)
53+
return fmt.Sprintf("scaleway(%v)", d.CommercialType)
5454
}
5555

5656
func (d *Driver) getClient() (cl *api.ScalewayAPI, err error) {

0 commit comments

Comments
 (0)