summaryrefslogtreecommitdiff
path: root/usr/src/pinyadmin/bin/lsaccess
diff options
context:
space:
mode:
authorJulian Blake Kongslie <jblake@omgwallhack.org>2010-06-29 22:38:57 -0700
committerJulian Blake Kongslie <jblake@omgwallhack.org>2010-06-29 22:38:57 -0700
commit5e4e9675d39413c22568100372bc82f07495a700 (patch)
treefe1b42c0f01d8fa4b6d212a533b15f37da09e80d /usr/src/pinyadmin/bin/lsaccess
parentab8af2c84e3e5dc8bfb8bc5f9d2225b93e6b18d3 (diff)
downloadpiny-code-5e4e9675d39413c22568100372bc82f07495a700.tar.gz
piny-code-5e4e9675d39413c22568100372bc82f07495a700.zip
First run at lsaccess and lsrepo.
Diffstat (limited to 'usr/src/pinyadmin/bin/lsaccess')
-rwxr-xr-xusr/src/pinyadmin/bin/lsaccess30
1 files changed, 30 insertions, 0 deletions
diff --git a/usr/src/pinyadmin/bin/lsaccess b/usr/src/pinyadmin/bin/lsaccess
new file mode 100755
index 0000000..eb7b6bc
--- /dev/null
+++ b/usr/src/pinyadmin/bin/lsaccess
@@ -0,0 +1,30 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Piny;
+
+my $env = Piny::Environment->new( );
+
+my ( $reponame ) = @ARGV;
+
+if ( defined $reponame ) {
+
+ my $repo = Piny::Repo->new( $repo );
+
+ foreach my $user ( Piny::User->all_users( ) ) {
+ if ( $repo->has_access( $user ) ) {
+ print $user->name . "\n";
+ };
+ };
+
+} else {
+
+ foreach my $repo ( Piny::Repo->all_repos( ) ) {
+ if ( $repo->has_access( $env->user ) ) {
+ print $repo->name . "\n";
+ };
+ };
+
+};