2014-08-29 22:55:11 +02:00
|
|
|
---
|
|
|
|
#
|
|
|
|
# Which package manager to use, options are:
|
|
|
|
# - packagekit - PackageKit CLI tool
|
|
|
|
# - zypp - Zypp RPM frontend
|
|
|
|
# - yum - Yum RPM frontend
|
|
|
|
# - dnf - DNF, the new RPM frontend
|
|
|
|
# - urpmi - Mandriva package manager
|
|
|
|
# - apt - APT frontend for DEB and RPM
|
|
|
|
# - pacman - Pacman
|
2017-08-29 10:18:47 +02:00
|
|
|
# - portage - Gentoo package manager
|
|
|
|
# - entropy - Sabayon package manager
|
|
|
|
# - dummy - Dummy manager, only logs
|
2014-08-29 22:55:11 +02:00
|
|
|
#
|
2017-08-29 10:18:47 +02:00
|
|
|
backend: dummy
|
2016-11-02 13:03:44 +01:00
|
|
|
|
2017-08-29 10:18:47 +02:00
|
|
|
# If set to true, a package-manager specific update procedure
|
|
|
|
# is run first (only if there is internet) to update the list
|
|
|
|
# of packages and dependencies.
|
2016-11-02 13:03:44 +01:00
|
|
|
update_db: true
|
|
|
|
|
2014-08-29 22:55:11 +02:00
|
|
|
#
|
|
|
|
# List of maps with package operations such as install or remove.
|
|
|
|
# Distro developers can provide a list of packages to remove
|
|
|
|
# from the installed system (for instance packages meant only
|
|
|
|
# for the live system).
|
|
|
|
#
|
|
|
|
# A job implementing a distro specific logic to determine other
|
|
|
|
# packages that need to be installed or removed can run before
|
|
|
|
# this one. Distro developers may want to install locale packages
|
|
|
|
# or remove drivers not needed on the installed system.
|
|
|
|
# This job will populate a list of dictionaries in the global
|
|
|
|
# storage called "packageOperations" and it is processed
|
|
|
|
# after the static list in the job configuration.
|
|
|
|
#
|
|
|
|
#operations:
|
|
|
|
# - install:
|
|
|
|
# - pkg1
|
|
|
|
# - pkg2
|
|
|
|
# - remove:
|
|
|
|
# - pkg3
|
|
|
|
# - pkg4
|
2016-11-02 17:00:08 +01:00
|
|
|
# - try_install: # no system install failure if a package cannot be installed
|
2014-08-29 22:55:11 +02:00
|
|
|
# - pkg5
|
2016-11-02 17:00:08 +01:00
|
|
|
# - try_remove: # no system install failure if a package cannot be removed
|
2014-08-29 22:55:11 +02:00
|
|
|
# - pkg2
|
|
|
|
# - pkg1
|
2016-11-02 13:03:44 +01:00
|
|
|
# - install:
|
2014-08-29 22:55:11 +02:00
|
|
|
# - pkgs6
|
|
|
|
# - pkg7
|
2015-03-04 16:19:26 +01:00
|
|
|
# - localInstall:
|
2015-03-02 00:28:14 +01:00
|
|
|
# - /path/to/pkg8
|
2017-08-29 12:33:07 +02:00
|
|
|
operations:
|
|
|
|
- install:
|
|
|
|
- vi
|
|
|
|
- wget
|
|
|
|
- binutils
|
|
|
|
- remove:
|
|
|
|
- vi
|
|
|
|
- wget
|
|
|
|
- binutils
|