diff options
author | jrayhawk+piny.be@omgwallhack.org <jrayhawk@dev.piny.svcs.cs.pdx.edu> | 2011-02-01 22:51:29 -0800 |
---|---|---|
committer | jrayhawk+piny.be@omgwallhack.org <jrayhawk@dev.piny.svcs.cs.pdx.edu> | 2011-02-01 22:51:29 -0800 |
commit | fdfa9a90322de6910c76711eee6e5ae5bf561c6a (patch) | |
tree | fa68ee514cdfb1aba9e0eee8108a08089d6abff5 /pinyadmin/bin | |
parent | c205d94bb1313d374be36242550d07b84f09aa07 (diff) | |
download | piny-code-fdfa9a90322de6910c76711eee6e5ae5bf561c6a.tar.gz piny-code-fdfa9a90322de6910c76711eee6e5ae5bf561c6a.zip |
Add SSH key management commands to pinyhelp
Diffstat (limited to 'pinyadmin/bin')
-rwxr-xr-x | pinyadmin/bin/pinyhelp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pinyadmin/bin/pinyhelp b/pinyadmin/bin/pinyhelp index 2ebee85..3a248d1 100755 --- a/pinyadmin/bin/pinyhelp +++ b/pinyadmin/bin/pinyhelp @@ -16,4 +16,8 @@ if [ -x /srv/rbin/addaccess ]; then echo "Add access to a repository for a user 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 |