Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
c0a008a8
Commit
c0a008a8
authored
Jul 29, 2014
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ha migrate: return non-critical error if migrate failed by VM is still running
parent
e157399a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
pvevm
bin/ocf/pvevm
+11
-1
No files found.
bin/ocf/pvevm
View file @
c0a008a8
...
@@ -359,7 +359,17 @@ if ($cmd eq 'start') {
...
@@ -359,7 +359,17 @@ if ($cmd eq 'start') {
upid_wait
(
$upid
);
upid_wait
(
$upid
);
# something went wrong if old config file is still there
# something went wrong if old config file is still there
exit
((
-
f
$oldconfig
)
?
OCF_ERR_GENERIC
:
OCF_SUCCESS
);
if
(
-
f
$oldconfig
)
{
# check if VM is really dead. If still running, return non-critical error
# We use OCF error code 150 (same as vm.sh agent)
check_running
(
$status
);
exit
(
150
)
if
$status
->
{
running
};
exit
(
OCF_ERR_GENERIC
);
}
exit
(
OCF_SUCCESS
);
}
elsif
(
$cmd
eq
'
stop
')
{
}
elsif
(
$cmd
eq
'
stop
')
{
my
$status
=
validate_all
();
my
$status
=
validate_all
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment