~julian-edwards/maas/power-change-api-error-bug-1384001

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python2.7
# Copyright 2014 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

"""Convert a "UEC" root image file to a root tarball.

This requires root privileges, because it needs to loop-mount the image file
in order to read its contents.
"""

from __future__ import (
    absolute_import,
    print_function,
    unicode_literals,
    )

str = None

__metaclass__ = type

from provisioningserver.import_images import uec2roottar


if __name__ == "__main__":
    parser = uec2roottar.make_argparser(__doc__)
    args = parser.parse_args()
    uec2roottar.main(args)