~easypeasy-maintainers/easypeasy-project/ubiquity

« back to all changes in this revision

Viewing changes to ubiquity/components/grubinstaller.py

  • Committer: Jon Ramvi
  • Date: 2009-07-10 16:08:35 UTC
  • Revision ID: jon@geteasypeasy.com-20090710160835-ltb4mkc3qg31p0mo
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: UTF-8 -*-
 
2
 
 
3
# Copyright (C) 2006 Canonical Ltd.
 
4
# Written by Colin Watson <cjwatson@ubuntu.com>.
 
5
#
 
6
# This program is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 
 
20
from ubiquity.filteredcommand import FilteredCommand
 
21
 
 
22
class GrubInstaller(FilteredCommand):
 
23
    def prepare(self):
 
24
        return (['/usr/share/grub-installer/grub-installer', '/target'],
 
25
                ['^grub-installer/bootdev$', 'ERROR'],
 
26
                {'OVERRIDE_UNSUPPORTED_OS': '1'})
 
27
 
 
28
    def error(self, priority, question):
 
29
        self.frontend.error_dialog(self.description(question),
 
30
                                   self.extended_description(question))
 
31
        return FilteredCommand.error(self, priority, question)
 
32
 
 
33
    def run(self, priority, question):
 
34
        if question == 'grub-installer/bootdev':
 
35
            # Force to (hd0) in the case of an unsupported OS.
 
36
            if self.db.get(question) == '':
 
37
                self.preseed(question, '(hd0)')
 
38
 
 
39
        return FilteredCommand.run(self, priority, question)