diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..84d7b8c --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,5 @@ +.debhelper/ +debhelper-build-stamp +files +pam-ssh-agent.substvars +pam-ssh-agent/ diff --git a/debian/changelog b/debian/changelog index 71edaa4..87af826 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pam-ssh-agent (0.2.0) UNRELEASED; urgency=medium + + * 0.2.0 + + -- Noa Resare Tue, 01 Aug 2023 20:40:02 +0000 + pam-ssh-agent (0.1.0) UNRELEASED; urgency=medium * Initial Release. diff --git a/debian/control b/debian/control index 7c76771..54c2738 100644 --- a/debian/control +++ b/debian/control @@ -11,4 +11,11 @@ Rules-Requires-Root: no Package: pam-ssh-agent Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: A PAM Module for authenticating with ssh-agent +Description: PAM Module for authenticating with ssh-agent + Shared library that gets installed where libpam looks for + modules. When referenced in a pam configuration, the module + implements authentication success or failure based on whether + the ssh-agent referenced by the SSH_AUTH_SOCK environment + variable can correctly sign a random challenge with the private + key corresponding to any of the public keys referenced in + the module configuration args. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..33ea9ea --- /dev/null +++ b/debian/copyright @@ -0,0 +1,14 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pam-ssh-agent +Source: https://github.com/nresare/pam-ssh-agent + +Files: + src/* + tests/* + examples/* + Makefile + README.* + Cargo.* +Copyright: 2023 Noa Resare +License: MIT or Apache-2.0 + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)