Changeset 368
- Timestamp:
- 02/12/07 03:58:25 (2 years ago)
- Files:
-
- library/perl/trunk/Archer/examples/shell.yaml (modified) (1 diff)
- library/perl/trunk/Archer/lib/Archer/Plugin/Shell.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
library/perl/trunk/Archer/examples/shell.yaml
r367 r368 4 4 config: 5 5 role: app 6 para: 16 para: 20 7 7 8 8 projects: library/perl/trunk/Archer/lib/Archer/Plugin/Shell.pm
r367 r368 50 50 $self->callback($server, $cmd, @args); 51 51 }, 52 num => $self->{ para},52 num => $self->{config}->{para}, 53 53 } 54 54 ); … … 66 66 67 67 1; 68 __END__ 69 70 =head1 NAME 71 72 Archer::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 84 Shell prompt for remote servers. 85 86 =head1 AUTHORS 87 88 Gosuke Miyashita 89 90 =head1 SEE ALSO 91 92 L<Term::Shell> 93 94 =cut
