qubes-installer-qubes-os/anaconda/installclasses/qubes.py

117 lines
4.1 KiB
Python
Raw Normal View History

2011-03-02 15:22:50 +00:00
#
# qubes.py
#
# Copyright (C) 2011 Invisible Things Lab All rights reserved.
2011-03-02 15:22:50 +00:00
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
#
from installclass import BaseInstallClass
from constants import *
from product import *
from meh.filer import *
from flags import flags
import os
import subprocess
2011-03-02 15:22:50 +00:00
import types
import iutil
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
import installmethod
import yuminstall
import rpmUtils.arch
class InstallClass(BaseInstallClass):
# name has underscore used for mnemonics, strip if you dont need it
id = "qubes"
name = N_("Qubes")
_description = N_("The default installation of %s is a minimal install. "
"You can optionally select a different set of software "
"now.")
_descriptionFields = (productName,)
sortPriority = 20000
2011-07-30 10:46:08 +00:00
hidden = 1
2011-03-02 15:22:50 +00:00
bootloaderTimeoutDefault = 5
2011-07-30 10:46:08 +00:00
tasks = [(N_("Minimal"), ["base", "base-x", "kde-desktop", "qubes" ]) ]
2011-03-02 15:22:50 +00:00
bugFiler = BugzillaFiler("http://qubes-os.org/trac/",
"http://qubes-os.org/",
product.productVersion, product.productName)
def getPackagePaths(self, uri):
if not type(uri) == types.ListType:
uri = [uri,]
return {'Installation Repo': uri}
def configure(self, anaconda):
BaseInstallClass.configure(self, anaconda)
BaseInstallClass.setDefaultPartitioning(self,
anaconda.storage,
anaconda.platform)
def setGroupSelection(self, anaconda):
BaseInstallClass.setGroupSelection(self, anaconda)
2011-07-30 10:46:08 +00:00
map(lambda x: anaconda.backend.selectGroup(x), ["base"])
2011-03-02 15:22:50 +00:00
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("partition")
anaconda.dispatch.skipStep("language")
anaconda.dispatch.skipStep("network")
anaconda.network.hostname = "dom0"
2011-04-05 17:09:48 +00:00
anaconda.dispatch.skipStep("accounts")
anaconda.dispatch.skipStep("tasksel")
anaconda.dispatch.skipStep("group-selection")
2011-03-02 15:22:50 +00:00
def postAction(self, anaconda):
# First disable all the useless services...
2011-10-07 09:36:04 +00:00
whitelisted = ['functions', 'killall', 'halt', 'single', 'crond',
'rsyslog', 'haldaemon', 'messagebus', 'xenstored', 'xenconsoled', 'firstboot',
'qubes_core', 'qubes_netvm', 'qubes_setupdvm']
for file in os.listdir(anaconda.rootPath + '/etc/init.d'):
if not file in whitelisted:
subprocess.check_call(['/usr/sbin/chroot', anaconda.rootPath,
'/sbin/chkconfig', '--level', '5', file, 'off'])
# Import rpm keys, so that qubes-receive-updates can call rpm -K
subprocess.check_call(['/usr/sbin/chroot', anaconda.rootPath,
'/bin/bash', '-c', 'rpm --import /etc/pki/rpm-gpg/*'])
for kernel in anaconda.backend.kernelVersionList(anaconda.rootPath):
subprocess.check_call(['/usr/sbin/chroot', anaconda.rootPath,
'/sbin/dracut', '--force', '/boot/initramfs-' + kernel[0] + '.img'])
2011-03-02 15:22:50 +00:00
def getBackend(self):
if flags.livecdInstall:
import livecd
return livecd.LiveCDCopyBackend
else:
return yuminstall.YumBackend
def productMatches(self, oldprod):
return False
def versionMatches(self, oldver):
return True
def __init__(self):
BaseInstallClass.__init__(self)