Skip to content

Commit

Permalink
Fix issue with missing NETHVOICE_USER_PORTAL_PASSWORD in configure-mo…
Browse files Browse the repository at this point in the history
…dule script
  • Loading branch information
stephdl authored and Amygos committed Oct 31, 2024
1 parent 49b483f commit 01a4a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imageroot/actions/restore-module/70configure_module
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ response = agent.tasks.run(agent_id=os.environ['AGENT_ID'], action='configure-mo
"timezone": old_envs["TIMEZONE"],
"user_domain": old_envs["USER_DOMAIN"],
"nethvoice_adm_username": old_envs.get("NETHVOICE_USER_PORTAL_USERNAME", ''),
"nethvoice_adm_password": agent.read_envfile("passwords.env")['NETHVOICE_USER_PORTAL_PASSWORD'],
"nethvoice_adm_password": agent.read_envfile("passwords.env").get('NETHVOICE_USER_PORTAL_PASSWORD',""),
})

agent.assert_exp(response['exit_code'] == 0)

0 comments on commit 01a4a35

Please sign in to comment.