summaryrefslogtreecommitdiff
path: root/src/update.sh
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2018-01-25 22:28:46 +0100
committerChristian Pointner <equinox@spreadspace.org>2018-01-25 22:28:46 +0100
commit80ae6d9411035e35a650d06eab23b140a8309816 (patch)
tree347942dc0e9fd8cc32fdeaa12f573e165f60a0b7 /src/update.sh
parentfixed hostname for sfive plug (diff)
started a complete rewrite
Diffstat (limited to 'src/update.sh')
-rwxr-xr-xsrc/update.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/update.sh b/src/update.sh
deleted file mode 100755
index 2e0b685..0000000
--- a/src/update.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/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-2014 Christian Pointner <equinox@spreadspace.org>
-# Michael Gebetsroither <michael@mgeb.org>
-#
-# 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 <http://www.gnu.org/licenses/>.
-#
-
-if [ -z "$1" ] || [ -z "$2" ]; then
- echo "Usage: $0 <planet> <config file>"
- exit 1
-fi
-
-./manage.sh $1 stop
-./manage.sh $1 clean
-./flufigut.py flumotion $2
-./manage.sh $1 deploy
-./manage.sh $1 start
-
-exit 0