summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2013-03-13 18:07:40 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2013-03-13 18:07:40 +0000
commit1f06e41bfe51b8b9263135902ab5d990541b8cb0 (patch)
tree3f86c60239ae910833618b185f3189808faa093d /morphlib
parent91b259141168df31a8f84f013d3789e8dabb0cc2 (diff)
parent37572bfd4e795576c7f2e540716056a9519d7854 (diff)
downloadmorph-1f06e41bfe51b8b9263135902ab5d990541b8cb0.tar.gz
Merge branch 'liw/simplify-system-kind'
Diffstat (limited to 'morphlib')
-rw-r--r--morphlib/morph2_tests.py2
-rw-r--r--morphlib/morphologyfactory.py11
-rw-r--r--morphlib/morphologyfactory_tests.py8
3 files changed, 19 insertions, 2 deletions
diff --git a/morphlib/morph2_tests.py b/morphlib/morph2_tests.py
index 49be9c8c..1a0b4822 100644
--- a/morphlib/morph2_tests.py
+++ b/morphlib/morph2_tests.py
@@ -309,7 +309,7 @@ class MorphologyTests(unittest.TestCase):
"kind": "system",
"disk-size": "1g",
"arch": "x86_64",
- "system-kind": "syslinux-disk"
+ "system-kind": "rootfs-tarball"
}'''
def test_writing_preserves_disk_size(self):
diff --git a/morphlib/morphologyfactory.py b/morphlib/morphologyfactory.py
index 76905eb9..817d7fcd 100644
--- a/morphlib/morphologyfactory.py
+++ b/morphlib/morphologyfactory.py
@@ -110,6 +110,17 @@ class MorphologyFactory(object):
raise morphlib.Error('No system-kind defined in system %s '
'(it is a mandatory field)' % filename)
+ if morphology['system-kind'] != 'rootfs-tarball':
+ self._app.status(
+ msg='You are using a system-kind %(kind)s. '
+ 'This is deprecated and untested functionality that will '
+ 'be removed in a future version of Baserock. The only '
+ 'supported system-kind is rootfs-tarball. '
+ 'Please convert your system morphologies to '
+ 'rootfs-tarball and use morph deploy to create '
+ 'disk images.',
+ kind=morphology['system-kind'])
+
name = morphology['name']
morphology.builds_artifacts = [name + '-rootfs']
diff --git a/morphlib/morphologyfactory_tests.py b/morphlib/morphologyfactory_tests.py
index 6e17df48..dbdb4228 100644
--- a/morphlib/morphologyfactory_tests.py
+++ b/morphlib/morphologyfactory_tests.py
@@ -106,13 +106,19 @@ class FakeLocalRepoCache(object):
return self.lr
+class FakeApp(object):
+
+ def status(self, **kwargs):
+ pass
+
+
class MorphologyFactoryTests(unittest.TestCase):
def setUp(self):
self.lr = FakeLocalRepo()
self.lrc = FakeLocalRepoCache(self.lr)
self.rrc = FakeRemoteRepoCache()
- self.mf = MorphologyFactory(self.lrc, self.rrc)
+ self.mf = MorphologyFactory(self.lrc, self.rrc, app=FakeApp())
self.lmf = MorphologyFactory(self.lrc, None)
def nolocalfile(self, *args):