in reply to Re^3: Backup Script Pb
in thread Backup Script Pb

Can you please enlight me with this method ? I read about the eof command in perldoc site.

I may not use it correctly but what I did is to close the ssh connexion like this:

$chan->close() if eof;

It works too ...

Replies are listed 'Best First'.
Re^5: Backup Script Pb
by beech (Parson) on May 04, 2016 at 09:30 UTC
      Oops, I have just discovered that there wasn't any wait_eof method. The function libssh2_channel_wait_eof was not being wrapped by Net::SSH2.

      Also, unfortunately, wait_closed fails unless the channel is already at EOF.

      My advice is to get the new version 0.59_16 which I have just uploaded to CPAN and providing wait_eof and use it as follows:

      my $chan = $ssh->channel(); $chan->ext_data('merge'); $chan->shell(); print $chan <<EOS; cd /tmp dbcfg_export -o /tmp/$filename.cfg -p '$pwdfile' tar -C /usr/local/cdcs -zcvf - ipsec.d openvpn-keys ssh-hostkeys \\ | openssl des3 -salt -k '$pwdfile' \\ | dd of=/tmp/vpn.des3 tar -zcvf /opt/cdcs/upload/$filename.cfg.tar.gz $filename.cfg vpn.des3 EOS $chan->send_eof; print while (<$chan>); $chan->wait_eof; $chan->close;
        Ok I understand. I will try that. Thank you so much for your help the both of you !!