fabtools.portage¶
Gentoo packages¶
This module provides tools for managing Gentoo packages and repositories using the Portage package manager.
See also
-
fabtools.portage.install(packages, update=False, options=None)[source]¶ Install one or more Portage packages.
If update is
True, the package definitions will be updated first, usingupdate_index().Extra options may be passed to
emergeif necessary.Example:
import fabtools # Update index, then install a single package fabtools.portage.install('mongodb', update=True) # Install multiple packages fabtools.arch.install([ 'dev-db/mongodb', 'pymongo', ])