diff options
Diffstat (limited to 'gentoo/utils.py')
-rw-r--r-- | gentoo/utils.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gentoo/utils.py b/gentoo/utils.py index 2c8e171..31850ab 100644 --- a/gentoo/utils.py +++ b/gentoo/utils.py @@ -1045,6 +1045,13 @@ class GentooInstall: return "\n".join([cflags, cxxflags, chost, makeopts, gentoo_mirrors, sync, use]) + def install_systools(self): + self._progress.set_text(_("Installing system tools")) + self.install_package(self._anaconda.cron) + self._progress.set_fraction(0.8) + self.install_package(self._anaconda.syslog) + self._progress.set_fraction(0.9) + def _get_langpacks(self): return None |