summaryrefslogtreecommitdiff
path: root/usr/local/sbin/rmaccess
diff options
context:
space:
mode:
authorJulian Blake Kongslie <jblake@omgwallhack.org>2010-03-18 13:56:03 -0700
committerJulian Blake Kongslie <jblake@omgwallhack.org>2010-03-18 13:56:03 -0700
commitab08391a42cb9a8e0d9023525f60f73ef848d17e (patch)
tree565f60e4a48dd5ac98e319ee222ee7f486424bab /usr/local/sbin/rmaccess
parent311d67a43ba7958c327d60a13e040a51cbb94139 (diff)
downloadpiny-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-xusr/local/sbin/rmaccess19
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 );