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 | |
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')
-rwxr-xr-x | usr/src/pinyadmin/bin/lsaccess | 30 | ||||
-rwxr-xr-x | usr/src/pinyadmin/bin/lsrepo | 12 | ||||
-rw-r--r-- | usr/src/pinyadmin/debian/changelog | 6 | ||||
-rw-r--r-- | usr/src/pinyadmin/debian/control | 2 |
4 files changed, 49 insertions, 1 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"; + }; + }; + +}; diff --git a/usr/src/pinyadmin/bin/lsrepo b/usr/src/pinyadmin/bin/lsrepo new file mode 100755 index 0000000..1587654 --- /dev/null +++ b/usr/src/pinyadmin/bin/lsrepo @@ -0,0 +1,12 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Piny; + +my $env = Piny::Environment->new( ); + +foreach my $repo ( Piny::Repo->all_repos( ) ) { + print $repo->name . "\n"; +}; diff --git a/usr/src/pinyadmin/debian/changelog b/usr/src/pinyadmin/debian/changelog index 98f4e2c..4f0a8eb 100644 --- a/usr/src/pinyadmin/debian/changelog +++ b/usr/src/pinyadmin/debian/changelog @@ -1,3 +1,9 @@ +pinyadmin (0.5) unstable; urgency=low + + * Listing repos and repo access rights. + + -- Julian Blake Kongslie <jblake@omgwallhack.org> Tue, 29 Jun 2010 22:32:30 -0700 + pinyadmin (0.4) unstable; urgency=low * Minor typo in manpage. diff --git a/usr/src/pinyadmin/debian/control b/usr/src/pinyadmin/debian/control index b6c3c9e..25df07d 100644 --- a/usr/src/pinyadmin/debian/control +++ b/usr/src/pinyadmin/debian/control @@ -7,7 +7,7 @@ Standards-version: 3.8.4 Package: pinyadmin Architecture: all -Depends: ${perl:Depends}, ${misc:Depends}, libpiny-perl +Depends: ${perl:Depends}, ${misc:Depends}, libpiny-perl (>= 0.5) Description: Administrative programs for piny The command-line programs for day-to-day administrative tasks in the Piny infrastructure. |