Code review comment for lp:~smoser/curtin/merge-critical

Revision history for this message
Ryan Harper (raharper) wrote :

% bzr diff curtin/deps/__init__.py
=== modified file 'curtin/deps/__init__.py'
--- curtin/deps/__init__.py 2015-11-17 19:10:04 +0000
+++ curtin/deps/__init__.py 2015-11-18 12:22:35 +0000
@@ -23,11 +23,13 @@
 REQUIRED_IMPORTS = [
     # import string to execute, python2 package, python3 package
     ('import yaml', 'python-yaml', 'python3-yaml'),
+ ('import oauth', 'python-oauthlib', 'python3-oauthlib'),
 ]

 REQUIRED_EXECUTABLES = [
     # executable in PATH, package
     ('lvcreate', 'lvm2'),
+ ('make-bcache', 'bcache-tools'),
     ('mdadm', 'mdadm'),
     ('mkfs.btrfs', 'btrfs-tools'),
     ('mkfs.ext4', 'e2fsprogs'),

And, I think this should have bcache-tools , not bcache-utils:

if lsb_release(field='codename') == "precise":
    REQUIRED_EXECUTABLES.append(('make-bcache', 'bcache-utils',))

« Back to merge proposal