()
| 31 | # Keeper initialization function |
| 32 | # ------------------------------------------------------ |
| 33 | def get_params(): |
| 34 | # Change the default JSON configuration location to /tmp |
| 35 | params = get_params_from_config(keeper_tmp + '/config.json') |
| 36 | |
| 37 | # Set username and password for Keeper Commander login |
| 38 | #params.config = {'sso_master_password': True} # Force Master-Password login for SSO users |
| 39 | #params.server = os.environ.get('KEEPER_SERVER') # https://keepersecurity.com |
| 40 | params.user = os.environ.get('KEEPER_USER') |
| 41 | params.password = os.environ.get('KEEPER_PASSWORD') |
| 42 | |
| 43 | |
| 44 | return params |
| 45 | |
| 46 | # ------------------------------------------------------ |
| 47 | # Keeper JSON report function |
no test coverage detected