From 504cc236b1b938226118c2c24dc343d601513b1c Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Mon, 6 Feb 2012 11:18:06 -0700 Subject: [PATCH] changing hfs to hfsplus so that the correct mkfs binary is called --- src/pylorax/imgutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/imgutils.py b/src/pylorax/imgutils.py index a8c3b06d..db344e0d 100644 --- a/src/pylorax/imgutils.py +++ b/src/pylorax/imgutils.py @@ -288,5 +288,5 @@ def mkbtrfsimg(rootdir, outfile, size=None, label="", mountargs="", graft={}): mkfsargs=["-L", label], graft=graft) def mkhfsimg(rootdir, outfile, size=None, label="", mountargs="", graft={}): - mkfsimage("hfs", rootdir, outfile, size, mountargs=mountargs, + mkfsimage("hfsplus", rootdir, outfile, size, mountargs=mountargs, mkfsargs=["-v", label], graft=graft)