X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=debian%2Funfold.postinst;h=c5cd80dabf720ad3f66b1fb75eb30bed617aaec4;hb=253c727bf8b4f874ae9488a1393acc5bcbbeae37;hp=de85dd318ea2eca7e632bb01b68d355ca40dbce8;hpb=4dfd873aec658a5f2a22983c7221f8b7006aa475;p=myslice.git diff --git a/debian/unfold.postinst b/debian/unfold.postinst index de85dd31..c5cd80da 100644 --- a/debian/unfold.postinst +++ b/debian/unfold.postinst @@ -1,10 +1,19 @@ #!/bin/bash +# tmp - (or?) +set -x # if this requires a service to be running, add something like this # update-rc.d unfold defaults +[ -d /var/unfold ] || mkdir /var/unfold +chown -R www-data.www-data /var/unfold +chmod -R 700 /var/unfold +# upgrading end /usr/share/unfold/manage.py syncdb /usr/share/unfold/manage.py migrate -chmod 777 /usr/share/unfold/myslice.sqlite3 -chmod 777 /usr/share/unfold -a2dissite default -a2ensite myslice.conf +# enable required stuff +a2enmod ssl +# name seems to depend on the debian distro +a2dissite default || a2dissite 000-default || : +a2ensite unfold.conf +# create a server-side cert/key and passes on gids to rehash them +unfold-init-ssl.sh service apache2 restart