<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cashier/.gitignore, branch master</title>
<subtitle>Mirror of Cashier, a SSH Certificate Authority (CA).
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/'/>
<entry>
<title>Gitlab auth issue (#79)</title>
<updated>2018-10-21T14:34:30+00:00</updated>
<author>
<name>Kevin Lyda</name>
<email>kevin@ie.suberic.net</email>
</author>
<published>2018-10-21T14:34:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=c5ec176a1cfba4f170991ca7bf6296185b10f565'/>
<id>c5ec176a1cfba4f170991ca7bf6296185b10f565</id>
<content type='text'>
* Fix the gitlab oauth issue.

* Update for gitlab 11.1+

Versions beyond 11.1 (and possibly a few releases before) use a
different method for delivering tokens.  They also have disabled
version 3 of the api.

These changes address that and add a debugging mode for the server
that make it easier to debug issues like this in the future.

* Cleanup of PR.

Updated README. Removed code duplication.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix the gitlab oauth issue.

* Update for gitlab 11.1+

Versions beyond 11.1 (and possibly a few releases before) use a
different method for delivering tokens.  They also have disabled
version 3 of the api.

These changes address that and add a debugging mode for the server
that make it easier to debug issues like this in the future.

* Cleanup of PR.

Updated README. Removed code duplication.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add codecov.io</title>
<updated>2018-08-25T18:07:38+00:00</updated>
<author>
<name>Niall Sheridan</name>
<email>nsheridan@gmail.com</email>
</author>
<published>2018-08-25T12:49:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=c82e7ee1d46a67f686f1d00aa35e7594b31022d5'/>
<id>c82e7ee1d46a67f686f1d00aa35e7594b31022d5</id>
<content type='text'>
Split runs into lint/test
Remove go 1.9 - coverage does not work with `./...` and go 1.9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Split runs into lint/test
Remove go 1.9 - coverage does not work with `./...` and go 1.9
</pre>
</div>
</content>
</entry>
<entry>
<title>Revoke multiple certs in a single call</title>
<updated>2017-04-15T17:29:35+00:00</updated>
<author>
<name>Niall Sheridan</name>
<email>nsheridan@gmail.com</email>
</author>
<published>2017-04-15T17:28:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=8ee3c6473f3e2373303b9cb16ab5f059f9e6369e'/>
<id>8ee3c6473f3e2373303b9cb16ab5f059f9e6369e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore generated .idea directory</title>
<updated>2017-02-19T00:22:55+00:00</updated>
<author>
<name>Niall Sheridan</name>
<email>nsheridan@gmail.com</email>
</author>
<published>2017-02-19T00:22:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=19dcff5d7245295d4508a71bb0ed2a886ada7a13'/>
<id>19dcff5d7245295d4508a71bb0ed2a886ada7a13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial pass at prometheus support. (#56)</title>
<updated>2017-02-12T14:38:12+00:00</updated>
<author>
<name>Kevin Lyda</name>
<email>kevin@ie.suberic.net</email>
</author>
<published>2017-02-12T14:38:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=ed8bc523fd0d1a66acf3fa449c453508035efdfc'/>
<id>ed8bc523fd0d1a66acf3fa449c453508035efdfc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a public_file_prefix option to cashier.conf</title>
<updated>2017-01-27T08:42:30+00:00</updated>
<author>
<name>Kevin Lyda</name>
<email>kevin@ie.suberic.net</email>
</author>
<published>2017-01-27T08:42:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=fe53f90bf0c7fab6cbf5cb019a337e02c6b3ffbf'/>
<id>fe53f90bf0c7fab6cbf5cb019a337e02c6b3ffbf</id>
<content type='text'>
Allow the client to save the public key and public cert to files
that start with public_file_prefix and end with .pub and -cert.pub
respectively.

This is the naming scheme the ssh IdentityFile config option supported
for certs starting in version 5.4p1. Starting in version 7.2p1, an
additional option, CertificateFile, was added, but the IdentityFile-only
method with those names still works.

Used in conjunction with a user's ~/.ssh/config file setting
IdentitiesOnly and IdentityFile, this change will allow for multiple
ssh CAs for different services.

Note that this will resolve #49 .
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow the client to save the public key and public cert to files
that start with public_file_prefix and end with .pub and -cert.pub
respectively.

This is the naming scheme the ssh IdentityFile config option supported
for certs starting in version 5.4p1. Starting in version 7.2p1, an
additional option, CertificateFile, was added, but the IdentityFile-only
method with those names still works.

Used in conjunction with a user's ~/.ssh/config file setting
IdentitiesOnly and IdentityFile, this change will allow for multiple
ssh CAs for different services.

Note that this will resolve #49 .
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore common files. (#45)</title>
<updated>2017-01-22T19:26:37+00:00</updated>
<author>
<name>Kevin Lyda</name>
<email>kevin@ie.suberic.net</email>
</author>
<published>2017-01-22T19:26:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=fb4a1232be3b2d00483a7399e7131c211d8cd551'/>
<id>fb4a1232be3b2d00483a7399e7131c211d8cd551</id>
<content type='text'>
Ignore files mentioned in the example configs and the binaries
made with go build.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ignore files mentioned in the example configs and the binaries
made with go build.</pre>
</div>
</content>
</entry>
<entry>
<title>Add tmp to .gitignore</title>
<updated>2016-05-29T17:23:56+00:00</updated>
<author>
<name>Patrick O'Doherty</name>
<email>p@trickod.com</email>
</author>
<published>2016-05-29T17:23:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=b50afcb0d9a4a04ee78269640621d20eaec72dee'/>
<id>b50afcb0d9a4a04ee78269640621d20eaec72dee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore new default config file.</title>
<updated>2016-05-29T12:59:57+00:00</updated>
<author>
<name>Niall Sheridan</name>
<email>nsheridan@gmail.com</email>
</author>
<published>2016-05-29T12:59:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=86580580cfef527311f0726fe30e68075ba33f25'/>
<id>86580580cfef527311f0726fe30e68075ba33f25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix key name in example config.</title>
<updated>2016-05-25T15:28:49+00:00</updated>
<author>
<name>Patrick O'Doherty</name>
<email>p@trickod.com</email>
</author>
<published>2016-05-25T15:28:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/cashier/commit/?id=f1a898a1adb2d3a0facfece2729bd0c527781bdc'/>
<id>f1a898a1adb2d3a0facfece2729bd0c527781bdc</id>
<content type='text'>
Add config.json to a gitignore to prevent it being versioned.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add config.json to a gitignore to prevent it being versioned.
</pre>
</div>
</content>
</entry>
</feed>
