~alexlist/charms/trusty/ceilometer/add-execd-preinstall

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/storage/linux/utils.py

  • Committer: James Page
  • Date: 2013-12-17 15:33:49 UTC
  • Revision ID: james.page@canonical.com-20131217153349-47887o8box1vsb0v
Resync helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
    :param block_device: str: Full path of block device to clean.
24
24
    '''
25
 
    check_call(['sgdisk', '--zap-all', block_device])
 
25
    check_call(['sgdisk', '--zap-all', '--mbrtogpt', block_device])