diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-05-11 21:56:42 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-05-11 21:56:42 -0700 |
commit | 3ca6564c2d95d12dff83cc645c280aa734ad19f8 (patch) | |
tree | 6ceacee15e63bf9a3a44235676a7e09135e63b9c /pinyadmin/bin/pinyhelp | |
parent | d3d06161d535d965867902f84b6e2ac558ce10c6 (diff) | |
download | piny-code-3ca6564c2d95d12dff83cc645c280aa734ad19f8.tar.gz piny-code-3ca6564c2d95d12dff83cc645c280aa734ad19f8.zip |
Making rebuildrepo user-usable and user-safe.
Diffstat (limited to 'pinyadmin/bin/pinyhelp')
-rwxr-xr-x | pinyadmin/bin/pinyhelp | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/pinyadmin/bin/pinyhelp b/pinyadmin/bin/pinyhelp index 3a248d1..5e65540 100755 --- a/pinyadmin/bin/pinyhelp +++ b/pinyadmin/bin/pinyhelp @@ -7,17 +7,18 @@ 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 -if [ -x /srv/rbin/passwd ]; then echo "Change your password (interactive): passwd"; fi -if [ -x /srv/rbin/writekeys ]; then echo "Write to SSH authorized_keys (stdin): writekeys"; fi -if [ -x /srv/rbin/appendkeys ]; then echo "Append to SSH authorized_keys (stdin): appendkeys"; fi -if [ -x /srv/rbin/readkeys ]; then echo "Read from SSH authorized_keys: readkeys"; fi +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 +if [ -x /srv/rbin/passwd ]; then echo "Change your password (interactive): passwd"; fi +if [ -x /srv/rbin/writekeys ]; then echo "Write to SSH authorized_keys (stdin): writekeys"; fi +if [ -x /srv/rbin/appendkeys ]; then echo "Append to SSH authorized_keys (stdin): appendkeys"; fi +if [ -x /srv/rbin/readkeys ]; then echo "Read from SSH authorized_keys: readkeys"; fi -if [ -x /srv/rbin/pinyconfig ]; then echo "Change config variables for your repository: pinyconfig <reponame> <variablename> [value]"; fi +if [ -x /srv/rbin/pinyconfig ]; then echo "Change config variables for your repository: pinyconfig <reponame> <variablename> [value]"; fi +if [ -x /srv/rbin/rebuildrepo ]; then echo "Rebuild repository after changing config: rebuildrepo <reponame>"; fi |