.PARAMETER_LABEL @AccountName
Enter Account Name (root or admin)
.PARAMETER_DESCRIPTION @AccountName
Account Name that password applies to
.PARAMETER_LABEL @Password
New account password
.PARAMETER_DESCRIPTION @Password
Enter New Password for account
*/
script ChangeF5LocalAccounts (
NCM.Nodes @ContextNode,
string @Password,
string @AccountName
)
{
CLI
{
echo -e '@Password\n@Password' | passwd @AccountName }
}