A simple 'packages manager' formula, to install/remove packages without further ado.
Table of Contents
See the full SaltStack Formulas installation and usage instructions.
If you are interested in writing or contributing to formulas, please pay attention to the Writing Formula Section.
If you want to use this formula, please pay attention to the FORMULA
file and/or git tag
,
which contains the currently released version. This formula is versioned according to Semantic Versioning.
See Formula Versioning Section for more details.
Commit message formatting is significant!!
Please see How to contribute for more details.
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.
Meta-state (This is a state that includes other states).
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.pkgs
one 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 theheld
dict to this list.unwanted
system packages, which will be uninstalled.required system packages
on which any of thewanted
packages depend for their correct installation.required states
on which any of thewanted
packages depend for their correct installation.
You can specify:
wanted
python packages, which will be installed using pip. Requires you specify the correctpython-pip
package for your distro, as a dependency (see the pillar.example)unwanted
python packages, which will be uninstalled using pip.required system packages
on which any of thewanted
python packages depend for their correct installation. Usually, apython-pip
package and/or some other compiler packages are required.required states
on which any of thewanted
packages depend for their correct installation (ie,epel
for RedHat families).
You can specify:
wanted
ruby packages, which will be installed using gem. Requires you specify the correctruby
package for your distro, as a dependency (see the pillar.example)unwanted
ruby packages, which will be uninstalled using gem.required system packages
on which any of thewanted
ruby packages depend for their correct installation. Usually, aruby
package and/or some other compiler packages are required.required states
on which any of thewanted
packages depend for their correct installation (ie,epel
for RedHat families).
This formula DOES NOT install nodejs/npm
, as it's outside of its scope:
nodejs/npm that comes with the distros is usually outdated, so it's required to add
a repo, run scripts, etc, and this formula manages packages :)
You can use the nodejs-formula and add a dependency for it in the pillar npms:required:sls (see the pillar.example)
You can specify:
wanted
npm packages, which will be installed using npm. Requires you specify the correctnpm
package for your distro, as a dependency (see the pillar.example)unwanted
npm packages, which will be uninstalled using npm.required system packages
on which any of thewanted
npm packages depend for their correct installation. Usually, anpm
package and/or some other compiler packages are required.required states
on which any of thewanted
packages depend for their correct installation (ie,epel
for 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.
wanted
archive package software, which will be installed by extraction.unwanted
archive package software, which are uninstalled by directory removal.required archive packages
on which any of thewanted
items depend on. Optional.
You can specify:
wanted
snapd packages, which will be installed using snap.classic
snapd packages, chich will be installed using snap with classic confinement.unwanted
snapd packages, which will be uninstalled using snap.required system packages
on which any of thewanted
snapd packages depend for their correct installation.required states
on which any of thewanted
packages depend for their correct installation (ie,epel
for RedHat families).
Note
Centos has no native snapd
package at this time.
You can specify:
clean
golang packages, removed usinggo clean -i <item>...
.goget
golang packages, installed usinggo get
.
You can specify a dictionary of remote system packages (deb/rpm) that you want to install, in the format:
name: url
You can specify:
wanted
chocolatey packages, which will be installed using chocolatey. Requires you specify the correctchocolatey
package (see the pillar.example)unwanted
chocolatey packages, which will be uninstalled using chocolatey.required system packages
on which any of thewanted
system packages depend for their correct installation.required states
on which any of thewanted
packages depend for their correct installation (ie,regedit
for configurations).
Note
You must configure winrepo-ng in order to install chocolatey required package
Linux testing is done with kitchen-salt
.
- Ruby
- Docker
$ gem install bundler
$ bundle install
$ bin/kitchen test [platform]
Where [platform]
is the platform name defined in kitchen.yml
,
e.g. debian-9-2019-2-py3
.
Creates the docker instance and runs the packages
main states, ready for testing.
Runs the inspec
tests on the actual instance.
Removes the docker instance.
Runs all of the stages above in one go: i.e. destroy
+ converge
+ verify
+ destroy
.
Gives you SSH access to the instance for manual testing.
Windows/FreeBSD/OpenBSD testing is done with kitchen-salt
.
- Ruby
- Virtualbox
- Vagrant
$ gem install bundler
$ bundle install --with=vagrant
$ bin/kitchen test [platform]
Where [platform]
is the platform name defined in kitchen.vagrant.yml
,
e.g. windows-81-latest-py3
.
When testing using Vagrant you must set the environment variable KITCHEN_LOCAL_YAML
to kitchen.vagrant.yml
. For example:
$ KITCHEN_LOCAL_YAML=kitchen.vagrant.yml bin/kitchen test # Alternatively,
$ export KITCHEN_LOCAL_YAML=kitchen.vagrant.yml
$ bin/kitchen test
Then run the following commands as needed.
Creates the Vagrant instance and runs the packages
main states, ready for testing.
Runs the inspec
tests on the actual instance.
Removes the Vagrant instance.
Runs all of the stages above in one go: i.e. destroy
+ converge
+ verify
+ destroy
.
Gives you RDP/SSH access to the instance for manual testing.