megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
view dev-vcs/kallithea/files/start-virtualenv.sh @ 227:9b9f918d8795
[sync] imported feb54d4..161b374 from upstream
commit 161b374c536a26c16bbc589710e1d982bb8e2a4d
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Apr 30 20:47:16 2020 +0200
media-gfx/trimage: fixed broken eclass dependency
author | Migration Sync <gentoo-overlay@megacoffee.net> |
---|---|
date | Thu, 30 Apr 2020 19:00:02 +0000 |
parents | af030a9d6541 |
children |
line wrap: on
line source
#!/bin/bash # don't allow to host web applications as root if [ $EUID -eq 0 ]; then echo "Denying attempt to run Kallithea as root." >&2 exit 1 fi # get full + virtual environment source /etc/profile source /opt/kallithea/bin/activate # start Kallithea cd /var/lib/kallithea paster serve --pid-file=/run/kallithea.pid \ --log-file=/var/log/kallithea/kallithea.log \ --daemon \ /etc/kallithea/production.ini