This problem is rather easy to fix.
line 321 in backup-manager-upload,
if (defined $ENV{BM_UPLOAD_SSH_PORT}) {
must be replaced by
if ($ENV{BM_UPLOAD_SSH_PORT}) {
The current version checks whether the environment variable
BM_UPLOAD_SSH_PORT is defined, which is also the case if it is
Hi,
changing line 321 in backup-manager-upload should fix the problem:
old:
if (defined $ENV{BM_UPLOAD_SSH_PORT}) {
new:
if ($ENV{BM_UPLOAD_SSH_PORT}) {
Best regards,
Zeno
PS: Sorry, I use Ubuntu, but I thought it may be better to fix the
original package.
-- System Informatio
Package: backup-manager
Version: 0.7.7-1
Severity: normal
Hello,
if the backup-manager.conf variable BM_UPLOAD_SSH_PORT is set to "", the
backup-manager-upload process tries to start ssh -p -i
This obviously does not work and causes the upload to fail. The default
configuration says:
# po
3 matches
Mail list logo