~agateau/ubiquity/kde-show-os-name

« back to all changes in this revision

Viewing changes to scripts/mythbuntu/mythbuntu_install.py

  • Committer: Mario Limonciello
  • Date: 2010-01-26 10:04:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3718.
  • Revision ID: superm1@ubuntu.com-20100126100432-w0c2yubszdddllo3
Drop mythbuntu_ui and all references to it.  The (former) Mythbuntu 
frontend is now fully pluggable into ubiquity's gtk_ui on it's own.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
# -*- coding: utf-8; Mode: Python; indent-tabs-mode: nil; tab-width: 4 -*-
3
 
 
4
 
# Copyright (C) 2005 Javier Carranza and others for Guadalinex
5
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd.
6
 
# Copyright (C) 2007-2009 Mario Limonciello
7
 
#
8
 
# This program is free software; you can redistribute it and/or modify
9
 
# it under the terms of the GNU General Public License as published by
10
 
# the Free Software Foundation; either version 2 of the License, or
11
 
# (at your option) any later version.
12
 
#
13
 
# This program is distributed in the hope that it will be useful,
14
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
# GNU General Public License for more details.
17
 
#
18
 
# You should have received a copy of the GNU General Public License
19
 
# along with this program; if not, write to the Free Software
20
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
 
 
22
 
import sys
23
 
import os
24
 
sys.path.insert(0, '/usr/lib/ubiquity')
25
 
 
26
 
from install import Install as ParentInstall
27
 
from ubiquity import install_misc
28
 
from ubiquity import osextras
29
 
 
30
 
Install = ParentInstall.Install
31
 
 
32
 
if __name__ == '__main__':
33
 
    if not os.path.exists('/var/lib/ubiquity'):
34
 
        os.makedirs('/var/lib/ubiquity')
35
 
    osextras.unlink_force('/var/lib/ubiquity/install.trace')
36
 
 
37
 
    install = Install()
38
 
    sys.excepthook = install.excepthook
39
 
    install.run()
40
 
    sys.exit(0)