diff options
| author | Jay Faulkner <jay@jvf.cc> | 2014-06-12 09:21:05 -0700 |
|---|---|---|
| committer | Jay Faulkner <jay@jvf.cc> | 2014-06-12 09:21:05 -0700 |
| commit | 6d9e9e8ba739bfda944a0a004d4c3f78d9eea21f (patch) | |
| tree | c5cee81d4f98b872c015fca2738b53457d142bcb /ironic_python_agent/shell | |
| parent | 6e11807820096b628e3bacbb2f51925595e6028d (diff) | |
| download | ironic-python-agent-6d9e9e8ba739bfda944a0a004d4c3f78d9eea21f.tar.gz | |
Fix incorrect log statement
Logging statement says it's 'imaging' to RAW, when in reality it's a
conversion.
Change-Id: I80d112062f51a6ccc932aeb71ec05042edb09884
Diffstat (limited to 'ironic_python_agent/shell')
| -rwxr-xr-x | ironic_python_agent/shell/write_image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic_python_agent/shell/write_image.sh b/ironic_python_agent/shell/write_image.sh index 00a85402..63a6eb70 100755 --- a/ironic_python_agent/shell/write_image.sh +++ b/ironic_python_agent/shell/write_image.sh @@ -44,7 +44,7 @@ dd if=/dev/zero of=$DEVICE bs=512 count=10 ## Doing two steps allows us to use dd, which allows us to tweak things like ## blocksize and allows use of direct io # Converts image to raw -log "Imaging $IMAGEFILE to RAW format" +log "Converting $IMAGEFILE to RAW format" qemu-img convert -O raw $IMAGEFILE /tmp/image.raw # Write image onto device |
