diff options
author | Joe Rayhawk <jrayhawk+piny.be@omgwallhack.org> | 2009-10-21 17:51:34 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk+piny.be@omgwallhack.org> | 2009-10-21 17:51:34 -0700 |
commit | fcf0b75c84e72eafd01a3cfe1a21ea1a3344bdd4 (patch) | |
tree | b6f81c5ca59579e113e6bf3638e8558a1c2ddd1e /usr/local/sbin/rmaccess | |
parent | a24383e2b312f697e1665c656e2208f6ba42ba15 (diff) | |
download | piny-code-fcf0b75c84e72eafd01a3cfe1a21ea1a3344bdd4.tar.gz piny-code-fcf0b75c84e72eafd01a3cfe1a21ea1a3344bdd4.zip |
Removing pluses from allowed characters for reponame
Diffstat (limited to 'usr/local/sbin/rmaccess')
-rwxr-xr-x | usr/local/sbin/rmaccess | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/sbin/rmaccess b/usr/local/sbin/rmaccess index 4d5d8d6..06b4f07 100755 --- a/usr/local/sbin/rmaccess +++ b/usr/local/sbin/rmaccess @@ -8,10 +8,10 @@ my( $reponame, $uid, $gitowner); if ( ( ! scalar $ARGV[1] ) or ( scalar $ARGV[2] ) ) { # must have exactly two arguments print( "Usage: rmaccess USER REPONAME\n" ); exit( 1 ); -} elsif ( ( $ARGV[0] !~ /^[a-zA-Z0-9_.][a-zA-Z0-9_.-]+$/ ) or ( $ARGV[1] !~ /^[a-z0-9][a-z0-9+-]+$/ ) ) { # Extra paranoid sanity checking +} elsif ( ( $ARGV[0] !~ /^[a-zA-Z0-9_.][a-zA-Z0-9_.-]+$/ ) or ( $ARGV[1] !~ /^[a-z0-9][a-z0-9-]+$/ ) ) { # Extra paranoid sanity checking print( "Usage: rmaccess USER REPONAME\n" ); print( " USER must consist only of letters, digits, underscores, periods, and dashes, and not start with a dash.\n"); - print( " REPONAME must consist only of lower case letters (a-z), digits (0-9), plus (+) signs, and minus (-) signs.\n" ); + print( " REPONAME must consist only of lower case letters (a-z), digits (0-9), and minus (-) signs.\n" ); print( " REPONAME must be at least two characters long and must start with an alphanumeric character.\n" ); exit( 1 ); } else { |