Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
awit-backstep
awit-backstep-traceback
Commits
f5aad4cb
Commit
f5aad4cb
authored
Aug 31, 2021
by
Nigel Kukard
Browse files
Merge branch 'exit-code-bug-fix' into 'master'
Exit code bug fix See merge request
!39
parents
213e7472
b9b7d1e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
backstep-traceback
View file @
f5aad4cb
...
...
@@ -2006,7 +2006,7 @@ sub lvmCreateSnapshot
$globalCreatedLVSnapshots{$snapshotDest}->{'lockfile'} = $lockFile;
return $res;
return $res
>> 8
;
}
...
...
@@ -2035,7 +2035,7 @@ sub lvmDestroyLogicalVolume
return $data[1];
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2129,7 +2129,7 @@ sub blockCreatePartitions
# Store the order in which we snapshotted this...
push(@globalCreatedPartitions,$device);
return $res;
return $res
>> 8
;
}
...
...
@@ -2152,7 +2152,7 @@ sub blockDestroyPartitions
return $data[1];
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2235,7 +2235,7 @@ sub fsMount
# Store the order in which we snapshotted this...
push(@globalMountedFilesystems,$mountPoint);
return $res;
return $res
>> 8
;
}
...
...
@@ -2286,7 +2286,7 @@ sub fsBindMount
return $data[1];
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2308,7 +2308,7 @@ sub fsUnmount
return $data[1];
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2518,7 +2518,7 @@ sub rsync
printLog(LOG_NOTICE,"RSYNC: - STDOUT log below\n- - - - - - - - - -\n%s\n- - - - - - - - - -\n",$data[0]);
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2618,7 +2618,7 @@ sub dbackup
printLog(LOG_ERROR,"DBACKUP: - STDOUT log below\n- - - - - - - - - -\n%s\n- - - - - - - - - -\n",$data[0]);
}
return $res;
return $res
>> 8
;
}
...
...
@@ -2714,7 +2714,7 @@ sub zabbixReport
}
}
return
$
res
;
return
$
res
>>
8
;
}
...
...
@@ -2744,7 +2744,7 @@ sub emailReport
printLog
(
LOG_ERROR
,
"EMAIL: - Failed to send email: %s"
,$
data
[
1
]);
}
return
$
res
;
return
$
res
>>
8
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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