gitolite/contrib/adc/adc.common-functions
Sitaram Chamarty 5bbd102059 (contrib) how to enable or disable push for maintenance
...for some or all repos

(and a minor bug fix in the adc.common-functions file)
2010-05-31 20:49:14 +05:30

18 lines
454 B
Bash

#!/bin/bash
# please make sure this file is NOT chmod +x
die() { echo "$@"; exit 1; }
get_rights_and_owner() {
local ans
ans=$(perl -I$GL_BINDIR -Mgitolite -e 'cli_repo_rights("'$1'")')
# set shell variables as needed
owner=${ans#* }
rights=${ans% *}
[[ $rights =~ C ]] && perm_create=yes || perm_create=
[[ $rights =~ R ]] && perm_read=yes || perm_read=
[[ $rights =~ W ]] && perm_write=yes || perm_write=
}