diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-18 13:56:03 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-18 13:56:03 -0700 |
commit | ab08391a42cb9a8e0d9023525f60f73ef848d17e (patch) | |
tree | 565f60e4a48dd5ac98e319ee222ee7f486424bab /usr/local/sbin/rmaccess | |
parent | 311d67a43ba7958c327d60a13e040a51cbb94139 (diff) | |
download | piny-code-ab08391a42cb9a8e0d9023525f60f73ef848d17e.tar.gz piny-code-ab08391a42cb9a8e0d9023525f60f73ef848d17e.zip |
Moved the various administrative scripts into Debian packaging.
Diffstat (limited to 'usr/local/sbin/rmaccess')
-rwxr-xr-x | usr/local/sbin/rmaccess | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/usr/local/sbin/rmaccess b/usr/local/sbin/rmaccess deleted file mode 100755 index f84fba0..0000000 --- a/usr/local/sbin/rmaccess +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Piny; - -my $env = Piny::Environment->new( ); - -my ( $reponame, @users ) = @ARGV; - -my $repo = Piny::Repo->new( $reponame ); - -if ( $repo->owner->uid != $env->user->uid ) { - print "You are not the owner of that repo!\n"; - exit( 3 ); -}; - -$repo->remove_access( map { Piny::User->new( $_ ) } @users ); |