A simple 'packages manager' formula, to install/remove packages without further ado.
Many times, in the process of setting up a host/vm, you need to install/remove packages with no extra configuration or setup. This formula tries to help with that. It can get a list of packages from a pillar, and it will try to install them.
It provides a few states to install/remove system packages (currently Debian/Redhat families), Python packages (using pip states) and Ruby gems (using gem states).
It can also provide basic dependency management on certain other states/packages.
This formula is not intended to configure packages, nor setup services or daemons. When you need to do that for a package, you should probably be using another formula.
Note
See the full Salt Formulas installation and usage instructions.
Runs all the other states in the formula.
Allows you to manage system's packages. You can specify:
held: either a list of packages or a dict of package: version, which will be installed and pinned to the installed version using SaltStack's hold/unhold capability.When upgrading a version, the package will be temporarily unheld, upgraded and then held again.
In the RedHat family, helding packages depend on a yum plugin that you need to install. In order to do this, you can add it using this formula, adding to your
pkgs.required.pkgsone of the following packages:- CentOS
``` packages:
- pkgs:
- required:
- pkgs:
- yum-plugin-versionlock
- Fedora > 26 with Python3:
``` packages:
- pkgs:
- required:
- pkgs:
- python3-dnf-plugin-versionlock
- Fedora > 26 with Python2:
``` packages:
- pkgs:
- required:
- pkgs:
- python2-dnf-plugin-versionlock
wanted: a list of packages which will be installed. Packages in this list will be automatically unheld so, if you want to permanently unheld a package you were previously helding to a version, just move it from thehelddict to this list.unwantedsystem packages, which will be uninstalled.required system packageson which any of thewantedpackages depend for their correct installation.required stateson which any of thewantedpackages depend for their correct installation.
You can specify:
wantedpython packages, which will be installed using pip. Requires you specify the correctpython-pippackage for your distro, as a dependency (see the pillar.example)unwantedpython packages, which will be uninstalled using pip.required system packageson which any of thewantedpython packages depend for their correct installation. Usually, apython-pippackage and/or some other compiler packages are required.required stateson which any of thewantedpackages depend for their correct installation (ie,epelfor RedHat families).
You can specify:
wantedruby packages, which will be installed using gem. Requires you specify the correctrubypackage for your distro, as a dependency (see the pillar.example)unwantedruby packages, which will be uninstalled using gem.required system packageson which any of thewantedruby packages depend for their correct installation. Usually, arubypackage and/or some other compiler packages are required.required stateson which any of thewantedpackages depend for their correct installation (ie,epelfor RedHat families).
'Archive file` handler for common 'download' and 'checksum' states. All formats recognized by salt.states.archive.extracted (tar, rar, zip, etc) will be extracted. Alternatively raw formats are supported (raw, bin,) for standard and binary executable files.
wantedarchive package software, which will be installed by extraction.unwantedarchive package software, which are uninstalled by directory removal.required archive packageson which any of thewanteditems depend on. Optional.
You can specify:
wantedsnapd packages, which will be installed using snap.classicsnapd packages, chich will be installed using snap with classic confinement.unwantedsnapd packages, which will be uninstalled using snap.required system packageson which any of thewantedsnapd packages depend for their correct installation.required stateson which any of thewantedpackages depend for their correct installation (ie,epelfor RedHat families).
Note
Centos has no native snapd package at this time.
You can specify a dictionary of remote system packages (deb/rpm) that you want to install, in the format:
name: url
Testing is done with Test Kitchen for machine setup and inspec for integration tests.
Tested on
- Debian/9
- Centos/7
- Fedora/27
- Ubuntu/18.04