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;

In reply to Re^6: Backup Script Pb by salva
in thread Backup Script Pb by WTem

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.