summaryrefslogtreecommitdiff
path: root/tar.check
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-02-17 16:17:00 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-03-04 14:47:24 +0000
commitc808549169a7704cdd5928e0d75a30ecc8036487 (patch)
tree452b3561dd7549222ae9d096c4a8524fcec5b748 /tar.check
parent9293be701e6b8ae2a1017bc5df9b80c85c735173 (diff)
downloaddefinitions-c808549169a7704cdd5928e0d75a30ecc8036487.tar.gz
deploy: Check the --upgrade flag has been used correctly.
Most write extensions don't handle both initial deployments and upgrades of a system.
Diffstat (limited to 'tar.check')
-rwxr-xr-xtar.check24
1 files changed, 24 insertions, 0 deletions
diff --git a/tar.check b/tar.check
new file mode 100755
index 00000000..cbeaf163
--- /dev/null
+++ b/tar.check
@@ -0,0 +1,24 @@
+#!/bin/sh
+# Copyright (C) 2014 Codethink Limited
+#
+# This program 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; version 2 of the License.
+#
+# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+# Preparatory checks for Morph 'tar' write extension
+
+set -eu
+
+if [ "$UPGRADE" == "yes" ]; then
+ echo >&2 "ERROR: Cannot upgrade a tar file deployment."
+ exit 1
+fi