Files
MaxScale/maxscale-system-test/mxs1662_pam_admin.cpp
Markus Mäkelä 11814762b5 MXS-1662: Test PAM admin authentication
The test checks that the vagrant user has access to the REST API.
2019-04-17 13:24:59 +03:00

16 lines
293 B
C++

/**
* MXS-1662: PAM authenticator for admin users
*/
#include "testconnections.h"
int main(int argc, char** argv)
{
TestConnections test(argc, argv);
// TODO: Store login information
test.check_maxctrl("-u vagrant -p vagrant show maxscale");
return test.global_result;
}