add permissions

This commit is contained in:
Trevor Batley 2023-09-05 18:16:44 +10:00
parent 1e9e198945
commit 6fdbc0c9ca

View File

@ -4,11 +4,13 @@ set -e
DEBUG=
SILENT="-s"
QUIET="-q"
for param in $1 $2 ; do
for param in $1 $2 $3 ; do
if [ $param ] ; then
case $param in
debug )
DEBUG="debug" ;;
perms=* )
NEW_PERMS=${param#*=} ;;
* )
NEW_USER=$param ;;
esac
@ -40,6 +42,9 @@ fi
# Add the new user into the database
sudo -u kojiadmin koji add-user "$NEW_USER"
if [ $NEW_PERMS ] ; then
sudo -u kojiadmin koji grant-permission --new $NEW_PERMS $NEW_USER
fi
# Generate a certificate for the user
pushd "$KOJI_PKI_DIR"
$SCRIPT_DIR/koji-gencert.sh "$NEW_USER" "/C=$COUNTRY_CODE/ST=$STATE/L=$LOCATION/O=$ORGANIZATION/CN=$NEW_USER"