# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
import subprocess import sys
from mozboot.base import BaseBootstrapper from mozboot.linux_common import LinuxBootstrapper
class ArchlinuxBootstrapper(LinuxBootstrapper, BaseBootstrapper): """Archlinux experimental bootstrapper."""
def __init__(self, version, dist_id, **kwargs):
print("Using an experimental bootstrapper for Archlinux.", file=sys.stderr)
BaseBootstrapper.__init__(self, **kwargs)
def install_packages(self, packages): # watchman is not available via pacman
packages = [p for p in packages if p != "watchman"]
self.pacman_install(*packages)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.