X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-vnc-server.git/blobdiff_plain/39e55d15a71400169ea9dc2b4eb813dbeb8666bb..3f803fdf7e4d2be1e8fde4cd4a91993dae571438:/debian/invirt-vnc-server.postinst?ds=inline diff --git a/debian/invirt-vnc-server.postinst b/debian/invirt-vnc-server.postinst old mode 100644 new mode 100755 index c7e3d1f..12f3616 --- a/debian/invirt-vnc-server.postinst +++ b/debian/invirt-vnc-server.postinst @@ -20,9 +20,19 @@ set -e case "$1" in configure) - if [ -z "$2" ]; then - echo "Please be sure to copy vncproxy.crt and vncproxykey.pem into /usr/share/invirt-vnc-server/" - fi + mkdir -p /etc/invirt/secrets + if ! [ -e /etc/invirt/secrets/vnc.pem ]; then + openssl genrsa -out /etc/invirt/secrets/vnc.pem 1024 >/dev/null + fi + + if ! [ -e /etc/invirt/secrets/vnc.crt ]; then + openssl req -new -x509 -nodes -sha1 -subj '/' -key /etc/invirt/secrets/vnc.pem \ + > /etc/invirt/secrets/vnc.crt + fi + + if ! [ -e /etc/invirt/secrets/vnc-key ]; then + openssl rand -base64 33 >/etc/invirt/secrets/vnc-key + fi ;; abort-upgrade|abort-remove|abort-deconfigure)