aboutsummaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2013-03-07 20:03:55 +0000
committerRob Austein <sra@hactrn.net>2013-03-07 20:03:55 +0000
commit51e0b2a082e3abd88ff909f28e15ab963eabf622 (patch)
treee56283644cb0d0da5882d70e3dcebf81aa7a8380 /buildtools
parent96aac3f3ecbf964fd2feafd47a6f295a5ece9797 (diff)
Add mod_wsgi, enable mod_ssl.
svn path=/trunk/; revision=5123
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/debian-package-skeleton.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/buildtools/debian-package-skeleton.py b/buildtools/debian-package-skeleton.py
index e0d0a4d6..b87cd22d 100644
--- a/buildtools/debian-package-skeleton.py
+++ b/buildtools/debian-package-skeleton.py
@@ -555,7 +555,7 @@ Description: rpki.net relying party tools
Package: rpki-ca
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, xsltproc, python (>= 2.7), python-lxml, libxml2-utils, mysql-client, mysql-server, python-mysqldb, python-vobject, python-yaml, python-django (<< 1.5), python-django-south (>= 0.7.5), apache2
+Depends: ${shlibs:Depends}, ${misc:Depends}, xsltproc, python (>= 2.7), python-lxml, libxml2-utils, mysql-client, mysql-server, python-mysqldb, python-vobject, python-yaml, python-django (<< 1.5), python-django-south (>= 0.7.5), apache2, libapache2-mod-wsgi
Description: rpki.net certification authority tools
"Certification authority" tools for issuing RPKI certificates and
related objects using the rpki.net toolkit.
@@ -749,6 +749,10 @@ setup_rpkid_group() {
fi
}
+enable_mod_ssl() {
+ a2enmod ssl
+}
+
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
@@ -766,6 +770,7 @@ case "$1" in
configure)
setup_rpkid_group
setup_rpkid_user
+ enable_mod_ssl
;;
abort-upgrade|abort-remove|abort-deconfigure)