blob: 131b787f6b927fb61c312b8ff6965bf469b028ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--source include/not_embedded.inc
if (!$PAM_PLUGIN_VERSION) {
skip No pam auth plugin;
}
eval install plugin pam soname '$PAM_PLUGIN_VERSION';
create user test_pam identified via pam using 'mariadb_mtr';
create user pam_test;
grant proxy on pam_test to test_pam;
let $plugindir=`SELECT @@global.plugin_dir`;
|