aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-12-29 19:47:04 +0100
committerJakob Odersky <jakob@odersky.com>2017-12-29 19:47:04 +0100
commitd11c1c4b8d1cda2b4f3546f76e1832bc09492a48 (patch)
tree76fec31f48ce67a0705848a352fa0732f0c2b7a7
parentd367fa856a01fb6477eb10185a389cf2881b870d (diff)
downloadnginx-letsencrypt-d11c1c4b8d1cda2b4f3546f76e1832bc09492a48.tar.gz
nginx-letsencrypt-d11c1c4b8d1cda2b4f3546f76e1832bc09492a48.tar.bz2
nginx-letsencrypt-d11c1c4b8d1cda2b4f3546f76e1832bc09492a48.zip
Fix dependencies and typo
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rw-r--r--debian/postinst2
3 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 3cc5d28..4728140 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+nginx-letsencrypt (0.0.2) unstable; urgency=medium
+
+ * Fix dependencies and typo
+
+ -- Jakob Odersky <jakob@odersky.com> Fri, 29 Dec 2017 19:07:23 +0100
+
nginx-letsencrypt (0.0.1) unstable; urgency=medium
* Initial Release.
diff --git a/debian/control b/debian/control
index a20c14d..7079043 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Vcs-Git: https://github.com/jodersky/nginx-letsencrypt.git
Package: nginx-letsencrypt
Architecture: all
-Depends: nginx, letsencrypt, ${misc:Depends}
+Depends: nginx, letsencrypt, ssl-cert, ${misc:Depends}
Description: Issue certificates by letsencrypt for nginx virtual hosts.
Simplify the process by which letsencrypt certificates are issued for virtual
hosts controlled by nginx.
diff --git a/debian/postinst b/debian/postinst
index 80ca174..ddd30dc 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -21,7 +21,7 @@ set -e
case "$1" in
configure)
if [ ! -e /etc/letsencrypt/live/nginx/fullchain.pem ]; then
- mkdir -p /etc/letsencypt/live/nginx
+ mkdir -p /etc/letsencrypt/live/nginx
cp /etc/ssl/certs/ssl-cert-snakeoil.pem \
/etc/letsencrypt/live/nginx/fullchain.pem
cp /etc/ssl/private/ssl-cert-snakeoil.key \