summaryrefslogtreecommitdiff
path: root/usr/src/pinyadmin/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/src/pinyadmin/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/src/pinyadmin/sbin/rmaccess')
-rwxr-xr-xusr/src/pinyadmin/sbin/rmaccess19
1 files changed, 19 insertions, 0 deletions
diff --git a/usr/src/pinyadmin/sbin/rmaccess b/usr/src/pinyadmin/sbin/rmaccess
new file mode 100755
index 0000000..f84fba0
--- /dev/null
+++ b/usr/src/pinyadmin/sbin/rmaccess
@@ -0,0 +1,19 @@
+#!/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 );