summaryrefslogtreecommitdiff
path: root/morphlib/exts/rawdisk.write
blob: c6f9c7f6388ee7b1b1a610f0e484f20531cedb3a (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python
# Copyright (C) 2012-2013  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


'''A Morph deployment write extension for raw disk images.'''


import os
import time
import tempfile

import morphlib.writeexts


class RawDiskWriteExtension(morphlib.writeexts.WriteExtension):

    '''Create a raw disk image during Morph's deployment.
    
    The location command line argument is the pathname of the disk image
    to be created.
    
    '''

    def process_args(self, args):
        if len(args) != 2:
            raise cliapp.AppException('Wrong number of command line args')
        
        temp_root, location = args
        self.status(
            msg='Temporary system root: %(temp_root)s',
            temp_root=temp_root)
        self.status(
            msg='Disk image to create: %(location)s',
            location=location)
        
        size = self.get_disk_size()
        self.status(msg='Disk size is %(size)d bytes', size=size)
        
        self.create_raw_disk_image(location, size)
        self.mkfs_btrfs(location)
        mp = self.mount(location)
        try:
            self.create_factory(mp, temp_root)
            self.create_fstab(mp)
            self.install_extlinux(mp)
        except BaseException, e:
            self.status(msg='EEK')
            self.unmount(mp)
            raise
        else:
            self.unmount(mp)
            
        self.status(msg='Disk image has been created')


RawDiskWriteExtension().run()