summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-07-22Release version 0.7.20.7.2Stef Walter2-1/+6
2013-07-19Delete current computer if no host specified to delete-computerStef Walter2-3/+8
realmd will use this. realmd lets adcli calculate the current host name during join, and so it makes sense to do the same during delete-computer. https://bugs.freedesktop.org/show_bug.cgi?id=65032
2013-07-09Fix FTBFS on freebsd kernelLaurent Bigonville1-0/+4
Set HOST_NAME_MAX to 255 if this is not already defined in the headers. sysconf(3) manpage indicates that this values shouldn't be less than 255. http://bugs.freedesktop.org/show_bug.cgi?id=66456
2013-06-18Fix typo of word 'necessary'Stef Walter2-2/+2
https://bugs.freedesktop.org/show_bug.cgi?id=65782
2013-06-11Always show info for --domain-controller if providedStef Walter1-8/+6
2013-05-13Release version 0.7.10.7.1Stef Walter2-1/+6
2013-05-13Fix access of null pointerStef Walter1-1/+1
2013-05-13When we recieve an LDAP ping response, don't expect moreStef Walter1-1/+1
Don't expect more than one LDAP ping response, if we get one but its either unparseable or the wrong type. Just move on.
2013-05-13If automatically determining the salt fails, just guessStef Walter1-7/+8
If automatically determining the kerberos principal salt to use fails, either due to race issues on the server, or other future problems, just guess and use a salt that usually works with Windows 2003 and 2008.
2013-05-06Release version 0.70.7Stef Walter2-1/+6
2013-05-06Work around krb5_get_init_creds_password() with empty passwordStef Walter1-3/+23
Put a null password prompter to get around this issue. See: http://mailman.mit.edu/pipermail/krbdev/2013-May/011525.html
2013-05-06Handle KRB5_PREAUTH_FAILED as an invalid passwordStef Walter1-1/+2
* This happens when password is empty
2013-05-02Add some annotations for clang analyzerStef Walter9-16/+82
* And fix highlighted issues
2013-05-02Fix use of freed memoryStef Walter1-2/+2
2013-04-29Release version 0.60.6Stef Walter3-1/+12
2013-04-29Use ldap_init_fd to better support IP addressesStef Walter3-34/+86
When using an IP address we need to connect to that address but then use the host name discovered in the LDAP URL. OpenLDAP doesn't make this easy to do so use the documented but not-in-headers ldap_init_fd function.
2013-04-26Add a --one-time-password to joinStef Walter2-3/+16
This is equivalent to --login-type=computer and providing the computer password.
2013-04-26Add option to print out the machine password after a joinStef Walter2-2/+30
2013-04-26Allow processing the computer password more easily in text formStef Walter1-2/+4
Remove shell characters and spaces and so on from auto-generated computer passwords
2013-04-26Fine tune the --os-name and --os-version argumentsStef Walter1-2/+2
The values should be required https://bugs.freedesktop.org/show_bug.cgi?id=54489
2013-04-17Add --user-principal argument for joining domainsStef Walter4-6/+131
This fills in the userPrincipalName attribute on the account https://bugs.freedesktop.org/show_bug.cgi?id=62755
2013-04-17Streamline how extra account attributes are updatedStef Walter1-145/+82
* Ignore failures updating auxiliary attributes, with warning https://bugs.freedesktop.org/show_bug.cgi?id=62755
2013-04-10Remove the last reference to p11-kit that came over with docsStef Walter1-1/+1
2013-04-10Release version 0.5Stef Walter2-1/+19
2013-04-10Don't retrieve kvno if not joiningStef Walter1-0/+4
https://bugs.freedesktop.org/show_bug.cgi?id=56149
2013-04-10Support using --login-ccache without an argumentStef Walter4-13/+25
Just use the default krb5 ccache in that case.
2013-04-10Add support for setting operatingSystem and related attrsStef Walter6-3/+168
* Add new arguments to join command: --os-name --os-version and --os-service-pack * These are not supported when a computer is claiming an account on its own credentials. https://bugs.freedesktop.org/show_bug.cgi?id=54489
2013-04-10Remove lookup of preferredOU which was incorrectStef Walter1-45/+0
* preferredOU is an attribute on a user or computer, not on the domain as a whole. We cannot use it during joins
2013-04-10Make ADCLI_STRICT=1 abort() when preconditionStef Walter3-23/+20
2013-04-10Add more documentation for building adcliStef Walter6-8/+216
2013-04-10Fix problems connecting without DNSStef Walter1-0/+17
* Pass the actual name that we're trying to connect to to openldap * Tell openldap to pass the right host name to GSSAPI
2013-04-09A bit of cleanup of adcli outputStef Walter2-7/+11
2013-04-09Allow passing a domain directly on the command line to join commandStef Walter1-1/+3
2013-04-09Catch more permission failures when joining domainStef Walter1-1/+5
* Windows Server returns all sorts of strange errors when permission problems for joining domain
2013-04-09Discovery fixesStef Walter5-155/+129
* Discover without DNS * Support libldaps without cldap built in * Better use of discovery data, without going through intermediate LDAP URLs
2013-04-09Fix possible uninitialized variableStef Walter1-1/+1
2013-04-09Add manual page for adcli and documentation infrastructureStef Walter15-14/+2023
2013-04-09Add support for adding/removing members from groupsStef Walter8-67/+442
* add-member command * remove-member command * Refactor attribute handling, and provide ways to load and modify entries.
2013-04-09Add support for creating/deleting groupsStef Walter9-407/+628
* create-group command * delete-group command * Refactor a bit to use the same code for user/groups
2013-04-09More expressive logging for ldap errorsStef Walter6-107/+90
2013-04-09Clean up the adcli argumentsStef Walter9-156/+114
* Use --domain-controller consistently to specify the server to connect to. Still accept --domain-server for the 'join' command for backward compatibility * Remove the --ldap-url argument, as --domain-controller is an acceptable replacement. * Use --login-user consistently to specify the admin user who is using adcli. Still accept --user for the 'join' command for backward compatibility. * Use --domain-ou consistently to specify the organizational unit to create objects in. Still accept --computer-ou for the 'join' command for backward compatibility. * Remove some extra info command arguments.
2013-04-08Implement domain discovery, including support for sitesStef Walter11-357/+1109
* Add a new 'adcli info' command https://bugs.freedesktop.org/show_bug.cgi?id=54490
2013-04-08Fix possible crash when for a NULL strvStef Walter1-1/+1
2013-04-08Less complicated message loggingStef Walter11-276/+236
Now that we're not trying to be a library, just use global functions and storage for message callbacks and logging.
2013-04-08Use a test framework that supports TAP outputStef Walter7-122/+523
For integration with automake 1.13, and perhaps others
2013-04-05Add support for adding and deleting active directory usersStef Walter15-72/+1336
2013-04-05Implement the 'delete-computer' and 'reset-computer' commandsStef Walter5-60/+391
2013-04-05Refactor the command line interfaceStef Walter5-810/+972
* More intelligent usage output * Rename the 'preset' command to 'preset-computer' * Split the computer tools into a separate file
2013-04-05Add generic sequence codeStef Walter7-54/+802
This can be used both as an array an and a sorted lookup table
2013-04-05Fix use of CFLAGS for building the libraryStef Walter1-1/+1