diff options
Diffstat (limited to 'pinyadmin/bin/pinyhelp')
-rwxr-xr-x | pinyadmin/bin/pinyhelp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pinyadmin/bin/pinyhelp b/pinyadmin/bin/pinyhelp index 2394901..2ebee85 100755 --- a/pinyadmin/bin/pinyhelp +++ b/pinyadmin/bin/pinyhelp @@ -7,8 +7,11 @@ else fi echo +if [ -x /srv/rbin/lsrepo ]; then echo "List repositories: lsrepo"; fi if [ -x /srv/rbin/newrepo ]; then echo "Create a new repository (interactive): newrepo <reponame>"; fi if [ -x /srv/rbin/rmrepo ]; then echo "Remove an existing repository: rmrepo <reponame>"; fi +if [ -x /srv/rbin/lsaccess ]; then echo "List repositories you have access to: lsaccess"; + echo "List users with access to a repository: lsaccess <reponame>"; fi if [ -x /srv/rbin/addaccess ]; then echo "Add access to a repository for a user: addaccess <reponame> <username>"; fi if [ -x /srv/rbin/rmaccess ]; then echo "Remove access to a repository for a user: rmaccess <reponame> <username>"; fi if [ -x /srv/rbin/newuser ]; then echo "Create a new user (interactive): newuser"; fi |