File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1043,6 +1043,7 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
1043
1043
* ` scw stop server1 server2 ` doesn't exit on first stopping failure
1044
1044
* ` scw run IMAGE [COMMAND] ` , default * COMMAND* is now ` if [ -x /bin/bash ]; then exec /bin/bash; else exec /bin/sh; fi `
1045
1045
* ` scw run|create SNAPSHOT ` , raised an error if snapshot does not have base volume
1046
+ * ` scw stop -t ` removes server entry from cache
1046
1047
1047
1048
### 1.1.0 (2015-06-12)
1048
1049
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ func runStop(cmd *types.Command, args []string) {
73
73
hasError = true
74
74
}
75
75
}
76
+ if stopT {
77
+ cmd .API .Cache .RemoveServer (serverID )
78
+ }
76
79
fmt .Println (needle )
77
80
}
78
81
}
You can’t perform that action at this time.
0 commit comments