diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-06-29 22:38:57 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-06-29 22:38:57 -0700 |
commit | 5e4e9675d39413c22568100372bc82f07495a700 (patch) | |
tree | fe1b42c0f01d8fa4b6d212a533b15f37da09e80d /usr/src/pinyadmin/bin/lsaccess | |
parent | ab8af2c84e3e5dc8bfb8bc5f9d2225b93e6b18d3 (diff) | |
download | piny-code-5e4e9675d39413c22568100372bc82f07495a700.tar.gz piny-code-5e4e9675d39413c22568100372bc82f07495a700.zip |
First run at lsaccess and lsrepo.
Diffstat (limited to 'usr/src/pinyadmin/bin/lsaccess')
-rwxr-xr-x | usr/src/pinyadmin/bin/lsaccess | 30 |
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"; + }; + }; + +}; |