Changeset 368

Show
Ignore:
Timestamp:
02/12/07 03:58:25 (2 years ago)
Author:
miya
Message:

Archer::Plugin::Shell: Fix passwd wrong para value.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • library/perl/trunk/Archer/examples/shell.yaml

    r367 r368  
    44      config: 
    55        role: app 
    6         para: 1 
     6        para: 20 
    77 
    88projects: 
  • library/perl/trunk/Archer/lib/Archer/Plugin/Shell.pm

    r367 r368  
    5050                $self->callback($server, $cmd, @args); 
    5151                }, 
    52             num => $self->{para}, 
     52            num => $self->{config}->{para}, 
    5353        } 
    5454    ); 
     
    6666 
    67671; 
     68__END__ 
     69 
     70=head1 NAME 
     71 
     72Archer::Plugin::Shell - display shell prompt for remote servers. 
     73 
     74=head1 SYNOPSIS 
     75 
     76  init: 
     77    - module: Shell 
     78      config: 
     79        role: app 
     80        para: 5 
     81 
     82=head1 DESCRIPTION 
     83 
     84Shell prompt for remote servers. 
     85 
     86=head1 AUTHORS 
     87 
     88Gosuke Miyashita 
     89 
     90=head1 SEE ALSO 
     91 
     92L<Term::Shell> 
     93 
     94=cut