summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-03-05Don't clobber the user ticket cache in the kadmin testRuss Allbery
2010-03-05Document how to clear an ACL in Wallet::ServerRuss Allbery
2010-03-05Fix leading comment for wallet-admin to use the right script nameRuss Allbery
2010-03-05Pull the list and report commands from wallet-adminRuss Allbery
The front-end still had the commands and documentation that had been moved to wallet-report. Pull them out of wallet-admin to avoid being confusing.
2010-03-03Note that all front-ends need a help functionRuss Allbery
2010-03-03Use L<> links instead of man page references for modulesRuss Allbery
Do this only in the main text, not in the SEE ALSO section, since the latter is more for conventional man pages. This will produce better results for some POD to HTML converters (although not mine, yet).
2010-03-03Remove stray list keywords from wallet-report documentationRuss Allbery
2010-03-03Add auditing for names that violate the naming policyRuss Allbery
Add an audit command to wallet-report and one audit: objects name, which returns all objects that do not pass the local naming policy. The corresponding Wallet::Report method is audit(). Wallet::Config::verify_name may now be called with an undefined third argument (normally the user attempting to create an object). This calling convention is used when auditing, and the local policy function should select the correct policy to apply for useful audit results.
2010-03-03Verify that an ACL to be deleted is not referencedRuss Allbery
When deleting an ACL on the server, verify that the ACL is not referenced by any object first. Database referential integrity should also catch this, but not all database backends may enforce referential integrity. This also allows us to return a better error message naming an object that's still using that ACL.
2010-03-03Remove file names from test file headersRuss Allbery
Coding style update. Don't prefix the file short description with the file name; it's not needed.
2010-03-03Fix krb5_free_error_message portabilityRuss Allbery
Fix portability to older Kerberos libraries without krb5_free_error_message.
2010-02-21Correct README statement about no Heimdal support for clientRuss Allbery
2010-02-21Also install the wallet-report scriptdebian/0.10-1Russ Allbery
2010-02-21Add the wallet-report man page to wallet-serverRuss Allbery
2010-02-21Add a watch fileRuss Allbery
2010-02-21Finalize changes for 0.10-1Russ Allbery
2010-02-21Update standards version to 3.8.4Russ Allbery
2010-02-21Add Homepage, Vcs-Git, and Vcs-Browser control fieldsRuss Allbery
2010-02-21Adjust for renaming of contrib/wallet-summaryRuss Allbery
2010-02-21Imported Upstream version 0.10upstream/0.10Russ Allbery
2010-02-21Merge commit 'upstream/0.10' into debianRuss Allbery
2010-02-21Fix test suite skip numbering in the kadmin testrelease/0.10Russ Allbery
2010-02-21Imported Upstream version 0.10Russ Allbery
2010-02-21Merge commit 'upstream/0.10' into debianRuss Allbery
2010-02-21Update copyright dates in LICENSERuss Allbery
2010-02-21Clean up krb5.conf in the client/basic test if skippingRuss Allbery
The test created krb5.conf first thing, but didn't delete it if skipping all of the tests.
2010-02-21Further README updates for Heimdal supportRuss Allbery
2010-02-21Fix typo in debian/rulesRuss Allbery
2010-02-21Update debian/copyright from the upstream LICENSE fileRuss Allbery
2010-02-21Update debian/compat for the new debhelper compatibility modeRuss Allbery
2010-02-21Description and dependency fixesRuss Allbery
* Clarify in long description that keytab-backend is only needed for MIT Kerberos. * Move wallet-server's dependency on krb5-user to Recommends, since it's only needed for keytab support, and allow libheimdal-kadm5-perl as an alternative. * Recommend remctl-server 2.14 or later for improved store support.
2010-02-21Update to debhelper V7 with rule minimization and overridesRuss Allbery
* Update debhelper compatibility level to V7. - Use debhelper rule minimization with overrides. - Add ${misc:Depends} to dependencies.
2010-02-21Remove the kasetkey package and its Build-DependsRuss Allbery
2010-02-21Initial changelog for 0.10-1Russ Allbery
2010-02-21Merge commit 'upstream/0.10' into debianRuss Allbery
2010-02-21Imported Upstream version 0.10Russ Allbery
2010-02-20Add .gitignore to the distributionRuss Allbery
2010-02-20Add missing files to the distributionRuss Allbery
2010-02-20Fix some test numbers in the Perl testsRuss Allbery
2010-02-20Include more missing test suite files in the distributionRuss Allbery
2010-02-20Include and install wallet-report and its man pageRuss Allbery
2010-02-20Include the TAP shell library in EXTRA_DISTRuss Allbery
2010-02-20Add portable/uio.h and include it in client/wallet.cRuss Allbery
Now that the wallet client uses struct iovec, it needs to include the relevant header file. Import the portability layer for possible future Windows support.
2010-02-20Release 0.10Russ Allbery
2010-02-20Update documentation for support for storing nul dataRuss Allbery
Update the wallet client, wallet-backend, and Wallet::Object::File documentation for the support for storing data containing nul characters using the new stdin support in remctld. Add this to NEWS.
2010-02-20Remove references to AFS kaserver support in READMERuss Allbery
2010-02-20Add a check to the full client test suite for storing a nulRuss Allbery
2010-02-20wallet-backend gets the third store argument from stdin if missingRuss Allbery
If there is no third argument to store, read it from standard input instead. This is the preferred way of running wallet-backend, using stdin=last support from remctl 2.14 and later. Receiving the third argument as a regular argument continues to be supported for backward compatibility.
2010-02-20Add support in the wallet client for store of binary dataRuss Allbery
Refactor the wallet client code to use remctl_commandv and send stores with data containing nul.
2010-02-20Reformat TODO by area instead of time frameRuss Allbery
Remove some TODO items that are no longer relevant, either because they've been implemented or because we no longer care about Kerberos v4 principal name conversion.