version 0.3.2 bugfix for correct handling "already started"

master v0.3.2
Denis Knauf 2023-10-21 00:14:26 +02:00
parent e2b38ca779
commit d6e7d84afc
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ class PVE::Cli
def start host, node: nil, timeout: nil, fire: nil, secs: nil
timeout ||= 60
if host.running?
condition_violation "Already running."
ConditionViolation "Already running."
return
end
task = host.start

View File

@ -1,3 +1,3 @@
module PVE
VERSION = '0.3.1'
VERSION = '0.3.2'
end