From f6eaad48d9852e29a7ee8bc9cef585d6f8840f2f Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Thu, 10 Apr 2014 16:57:19 +0200 Subject: [PATCH] chg: [rsted] use our github source code, with small fix. --- precise/rsted/hooks/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/precise/rsted/hooks/install b/precise/rsted/hooks/install index 308d869..220788f 100755 --- a/precise/rsted/hooks/install +++ b/precise/rsted/hooks/install @@ -15,10 +15,11 @@ set -eux # -x for verbose logging to juju debug-log mkdir -p /opt/apps ( cd /opt/apps && - git clone https://github.com/anru/rsted.git && + git clone https://github.com/vaab/rsted && adduser --system --home=/home/"$RSTED_USER" --group "$RSTED_GROUP" && #chown "$RSTED_USER":"$RSTED_GROUP" /opt/apps/rsted -R && ## -H is to force HOME environment variable to change to etherpad one. + mkdir /var/run/rsted && chown "$RSTED_USER" /var/run/rsted && cd rsted && pip install -r pip-requirements.txt )