diff options
author | Aaron Ball <nullspoon@oper.io> | 2021-07-11 21:04:32 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2021-07-11 21:04:32 -0600 |
commit | 013b62d92db8bf26d658df47305771a6edbc672f (patch) | |
tree | 6cb7597b5832e226e79719a530b5e1474ca0c954 | |
parent | 487e72e9d412d9ff5675555c4340d2ad80ae1e46 (diff) | |
download | gitaccess-013b62d92db8bf26d658df47305771a6edbc672f.tar.gz gitaccess-013b62d92db8bf26d658df47305771a6edbc672f.tar.xz |
Update program description and copyright
-rw-r--r-- | src/main.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,6 +1,6 @@ /** * Gitaccess implements basic access controls for git servers. - * Copyright (C) 2020 Aaron Ball <nullspoon@oper.io> + * Copyright (C) 2021 Aaron Ball <nullspoon@oper.io> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,20 +20,20 @@ * Description * ----------- * - * This script provides basic access controls to git repos. For this script to - * work, it requires that each repository has a 'users' file. This script reads - * that file and determines if the user associated with the logged in ssh key - * has access to that repo. + * This program provides basic access controls to git repos. For this program + * to work, it requires each repository to have a 'users' file. That file is + * read to determine if the user associated with the logged in ssh key has + * access to that repo. * - * This script also provides support for interactive git shell, interactive - * shell rejection via the no-interactive-shell script, and any other scripts - * that are placed inside the ~/git-shell-commands directory. + * This program also supports the interactive git shell, interactive shell + * rejection via the no-interactive-shell script, and any other scripts that + * are placed inside the ~/git-shell-commands directory. * * To use this script for a specified ssh key, call it using the command * directive in the ~/.ssh/authorized keys file using the following syntax * * # Key for user <username> - * command="gitaccess <username>" ecdsa-sha2-nistp521 AAAAE2v.... + * command="gitaccess <username>" ssh-ed25519 AAAAE2v.... */ #include <stdio.h> #include <stdlib.h> |