restart regex has a short option
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Server.pm
index 716bd4e..5f3d508 100644 (file)
@@ -50,18 +50,54 @@ has listen => (
 
 has pidfile => ( 
     traits => [qw(Getopt)],
-    cmd_aliases => 'pf',
+    cmd_aliases => 'pid',
+    isa => 'Str',    
+    is => 'ro', 
+    required => 0 
+);
+
+has keepalive => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'k',
+    isa => 'Bool',   
+    is => 'ro', 
+    required => 0, 
+    default => 0 
+);
+
+has background => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'bg',
+    isa => 'Bool',   
+    is => 'ro', 
+    required => 0 
+);
+
+has app => ( isa => 'Str',    is => 'ro', required => 1 ); # THIS IS FUCKING RETARDED HALP PLZ
+has restart => (
+    traits => [qw(Getopt)],
+    cmd_aliases => 'r', 
+    isa => 'Bool',   
+    is => 'ro', 
+    required => 0 
+);
+
+has restart_delay => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'rdel',
+    isa => 'Int',    
+    is => 'ro', 
+    required => 0 
+);
+
+has restart_regex => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'rxp',
     isa => 'Str',    
     is => 'ro', 
     required => 0 
 );
 
-has keepalive       => ( isa => 'Bool',   is => 'ro', required => 0, default => 0 );
-has background      => ( isa => 'Bool',   is => 'ro', required => 0 );
-has app             => ( isa => 'Str',    is => 'ro', required => 1 );
-has restart         => ( isa => 'Bool',   is => 'ro', required => 0 );
-has restart_delay   => ( isa => 'Int',    is => 'ro', required => 0 );
-has restart_regex   => ( isa => 'Str',    is => 'ro', required => 0 );
 has follow_symlinks => ( isa => 'Bool',   is => 'ro', required => 0 );
 
 my @argv = @ARGV;