From 0d5e46ea593b48a92f8a800d2ef633a6e8858c7b Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sat, 13 Oct 2012 15:50:34 +0200 Subject: admin account can now be configured in json file some bugfixes video encoder now use 8 threads --- src/update.sh | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 src/update.sh (limited to 'src/update.sh') diff --git a/src/update.sh b/src/update.sh new file mode 100755 index 0000000..ca4f028 --- /dev/null +++ b/src/update.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# +# flufigut +# +# flufigut, the flumotion configuration utility, is a simple tool +# that generates flumotion configuration files using pyhton jinja2 +# template engine and simplejson. flufigut generates planet.xml +# and worker.xml files from configuration templates and an easy to +# understand representation of the flow structure written in json. +# +# +# Copyright (C) 2012 Christian Pointner +# Michael Gebetsroither +# +# This file is part of flufigut. +# +# flufigut is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# any later version. +# +# flufigut is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with flufigut. If not, see . +# + +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 1 +fi + +TEMPLATES="example" + +./manage.sh stop +./flufigut.py "$TEMPLATES" $1 +./manage.sh deploy +./manage.sh start + +exit 0 -- cgit v1.2.3