rundeck-plugins / rundeck-winrm-plugin

UNMAINTAINED - Rundeck WinRM Node Executor plugin
Other
56 stars 28 forks source link

Can't get winrm-domain or winrm-is-domain-member to work. #49

Open jvrobert opened 7 years ago

jvrobert commented 7 years ago

Using Rundeck 2.7.2-1

I tried adding both/either of these in my framework.properties file: framework.winrm-domain=DOMAIN.TLD framework.winrm-is-domain-member=true

In my node, I have username="${option.username}", or I tried hard-coding a username (only).

Node name is correct, i.e. hostname.domain.tld

No matter what I do with these options it always just uses 'username' not 'username'@DOMAIN.TLD and I get a 401.

If I fully qualify the username i.e. username="username@DOMAIN.TLD" it works, or if I use variable expansion and ${option.username} and set the 'username' option to username@DOMAIN.TLD it works.

Any ideas?