Revision f2ddf4db image_creator/bundle_volume.py

b/image_creator/bundle_volume.py
389 389
                    rsync.exclude(excl)
390 390

  
391 391
                rsync.archive().hard_links().xattrs().sparse().acls()
392
                rsync.run('/', target, 'host', 'tmp image')
392
                rsync.run('/', target, 'host', 'temporary image')
393 393

  
394 394
                # We need to replace the old UUID referencies with the new
395 395
                # ones in grub configuration files and /etc/fstab for file
......
433 433

  
434 434
        # Check if the available space is enough to host the image
435 435
        dirname = os.path.dirname(image)
436
        self.out.output("Examining available space in %s ..." % dirname, False)
436
        self.out.output("Examining available space ..." % dirname, False)
437 437
        if free_space(dirname) <= size:
438
            raise FatalError('Not enough space in %s to host the image' %
438
            raise FatalError('Not enough space under %s to host the image' %
439 439
                             dirname)
440 440
        self.out.success("sufficient")
441 441

  

Also available in: Unified diff