You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"path to file containing the public ssh key you wish to be on the new Cloud Server")
143
-
cloudServerCreateCmd.Flags().Int("config-id", 0, "config-id to use")
143
+
cloudServerCreateCmd.Flags().Int("config-id", cast.ToInt(defaultFlag("config-id", -1)), "config-id to use")
144
144
cloudServerCreateCmd.Flags().Int("backup-days", -1, "Enable daily backup plan. This is the amount of days to keep a backup")
145
145
cloudServerCreateCmd.Flags().Int("backup-quota", -1, "Enable quota backup plan. This is the total amount of GB to keep.")
146
146
cloudServerCreateCmd.Flags().String("bandwidth", "SS.10000", "bandwidth package to use")
147
-
cloudServerCreateCmd.Flags().Int64("zone", cast.ToInt64(defaultFlag("zone")), "zone (id) to create new Cloud Server in (see 'cloud server options --zones')")
147
+
cloudServerCreateCmd.Flags().Int64("zone", cast.ToInt64(defaultFlag("zone", -1)), "zone (id) to create new Cloud Server in (see 'cloud server options --zones')")
148
148
cloudServerCreateCmd.Flags().String("password", "", "root or administrator password to set")
149
149
150
150
cloudServerCreateCmd.Flags().Int("backup-id", -1, "id of cloud backup to create from (see 'cloud backup list')")
0 commit comments