Changeset 8250 for lang/perl/App-MadEye

Show
Ignore:
Timestamp:
03/21/08 17:41:30 (9 months ago)
Author:
tokuhirom
Message:

lang/perl/App-MadEye?: Checking in changes prior to tagging of version 0.04. Changelog diff is:

=== Changes
==================================================================
--- Changes (revision 10725)
+++ Changes (local)
@@ -1,5 +1,18 @@

Revision history for Perl extension App::MadEye?


+0.04
+
+ (FEATURE)
+
+ - timeout is now normal error.
+ - added new plugins
+ - Agent::Sleep (debugging module)
+ - Agent::SSLExpireDate
+
+ (MISC)
+
+ - fixed some pod bug.
+

0.03


WARNINGS: this release has some drastic changes..

Location:
lang/perl/App-MadEye/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-MadEye/trunk/Changes

    r8229 r8250  
    11Revision history for Perl extension App::MadEye 
     2 
     30.04 
     4 
     5    (FEATURE) 
     6 
     7    - timeout is now normal error. 
     8    - added new plugins 
     9        - Agent::Sleep (debugging module) 
     10        - Agent::SSLExpireDate 
     11 
     12    (MISC) 
     13 
     14    - fixed some pod bug. 
    215 
    3160.03 
  • lang/perl/App-MadEye/trunk/MANIFEST

    r8229 r8250  
    5454t/00_compile.t 
    5555madeye.pl 
     56lib/App/MadEye/Plugin/Agent/SSLExpireDate.pm 
     57lib/App/MadEye/Plugin/Agent/Sleep.pm 
  • lang/perl/App-MadEye/trunk/config.yaml

    r8232 r8250  
    77        min_level: debug 
    88        stderr: 1 
     9 
    910plugins: 
    1011  - module: Check::User 
     
    1920  - module: Worker::Simple 
    2021    config: 
    21       task_timeout: 4 
     22      task_timeout: 10 
    2223 
    2324# - module: Worker::Gearman 
     
    3435#     user_agent: DoCoMo/1.0/P504i/c30/TB 
    3536 
    36   - module: Agent::FTP 
     37# - module: Agent::SSLExpireDate 
     38#   config: 
     39#     target: 
     40#       - admin.ktaf.jp 
     41#       - blomotion.jp 
     42#       - caspeee.jp 
     43#       - melorin.jp 
     44#       - secondbuzz.jp 
     45#       - ssl.mobilefactory.jp 
     46#       - wassr.com 
     47#       - wassr.jp 
     48#     type:   https 
     49#     duration: 7days 
     50 
     51  - module: Agent::SSLExpireDate 
    3752    config: 
    38       port: 21 
    3953      target: 
    40        - ftp.ring.gr.jp 
    41        - ftp.ring.gr.jp 
    42        - ring.shibaura-it.ac.jp 
    43       message: FTP server raady. 
    44     rule: 
    45       - module: Retry 
    46         config: 
    47           expire_time: 30 
    48           cache_root: /tmp/foo 
     54        - mail.mfac.jp:25 
     55      type: ssl 
     56      duration: 1year 
     57 
     58# - module: Agent::FTP 
     59#   config: 
     60#     port: 21 
     61#     target: 
     62#      - ftp.ring.gr.jp 
     63#      - ftp.ring.gr.jp 
     64#      - ring.shibaura-it.ac.jp 
     65#     message: FTP server raady. 
     66#   rule: 
     67#     - module: Retry 
     68#       config: 
     69#         expire_time: 30 
     70#         cache_root: /tmp/foo 
    4971 
    5072#     - module: DateTimeCron 
     
    121143#       - 192.168.2.3 
    122144 
     145# - module: Agent::Sleep 
     146#   config: 
     147#     target: 
     148#       - 127.0.0.1 
     149#     sleep: 1000 
     150 
    123151# - module: Agent::SMTP 
    124152#   config: 
  • lang/perl/App-MadEye/trunk/lib/App/MadEye.pm

    r8238 r8250  
    33use warnings; 
    44use 5.00800; 
    5 our $VERSION = '0.03'; 
     5our $VERSION = '0.04'; 
    66use Class::Component; 
    77use Params::Validate;