Make listusers.sh saml user aware
This commit is contained in:
parent
717350780f
commit
5f47ce7fca
1 changed files with 10 additions and 3 deletions
|
@ -15,9 +15,16 @@ password=$(${dexec} env | grep MYSQL_ROOT_PASSWORD | awk -F '=' '{print $2}')
|
||||||
|
|
||||||
mysql="${dexec} mysql -p${password}"
|
mysql="${dexec} mysql -p${password}"
|
||||||
|
|
||||||
|
if [[ "$(${mysql} -NB -e 'select exists(select * from information_schema.TABLES where TABLE_SCHEMA = "nextcloud" and TABLE_NAME = "oc_global_scale_users")')" == "1" ]]
|
||||||
|
then
|
||||||
users="$(${mysql} -NB -e 'select uid,displayname from nextcloud.oc_global_scale_users')"
|
users="$(${mysql} -NB -e 'select uid,displayname from nextcloud.oc_global_scale_users')"
|
||||||
users="${users}
|
fi
|
||||||
$(${mysql} -NB -e 'select uid,displayname from nextcloud.oc_users')"
|
users="${users}"$'\n'"$(${mysql} -NB -e 'select uid,displayname from nextcloud.oc_users')"
|
||||||
|
if [[ "$(${mysql} -NB -e 'select exists(select * from information_schema.TABLES where TABLE_SCHEMA = "nextcloud" and TABLE_NAME = "oc_user_saml_users")')" == "1" ]]
|
||||||
|
then
|
||||||
|
users="${users}"$'\n'"$(${mysql} -NB -e 'select uid,displayname from nextcloud.oc_user_saml_users')"
|
||||||
|
fi
|
||||||
|
users="$(echo "${users}" | sort | uniq)"
|
||||||
|
|
||||||
project="statistics"
|
project="statistics"
|
||||||
bucket="drive-server-coms"
|
bucket="drive-server-coms"
|
||||||
|
|
Loading…
Add table
Reference in a new issue