summaryrefslogtreecommitdiff
path: root/morphlib/plugins/deploy_plugin.py
diff options
context:
space:
mode:
authorDaniel Firth <dan.firth@codethink.co.uk>2013-10-15 11:47:47 +0000
committerDaniel Firth <dan.firth@codethink.co.uk>2013-10-30 12:20:00 +0000
commite9b3dbbe18d9a465148cc8df494971054b87654a (patch)
treef14833385ddae3463a63f30eec753503772bfe29 /morphlib/plugins/deploy_plugin.py
parent6a315135ac6273c90f7dc35b7d4c49da158be487 (diff)
downloadmorph-e9b3dbbe18d9a465148cc8df494971054b87654a.tar.gz
Deploying a non-cluster morphology now displays an error message
Diffstat (limited to 'morphlib/plugins/deploy_plugin.py')
-rw-r--r--morphlib/plugins/deploy_plugin.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/morphlib/plugins/deploy_plugin.py b/morphlib/plugins/deploy_plugin.py
index 35bb2b6e..825b0124 100644
--- a/morphlib/plugins/deploy_plugin.py
+++ b/morphlib/plugins/deploy_plugin.py
@@ -274,6 +274,10 @@ class DeployPlugin(cliapp.Plugin):
root_repo_dir = self.other.find_repository(branch_dir, root_repo)
data = self.other.load_morphology(root_repo_dir, cluster)
+ if data['kind'] != 'cluster':
+ raise cliapp.AppException(
+ "Error: morph deploy is only supported for cluster"
+ " morphologies.")
for system in data['systems']:
self.deploy_system(system, env_vars)