salt.modules.freebsdports
Install software from the FreeBSD ports(7)
system
New in version 2014.1.0.
This module allows you to install ports using BATCH=yes
to bypass configuration prompts. It is recommended to use the ports state
to install ports, but it is also possible to use this module exclusively from the command line.
salt minion-id ports.config security/nmap IPV6=off salt minion-id ports.install security/nmap
-
Modify configuration options for a given port. Multiple options can be specified. To see the available options for a port, use
ports.showconfig
.- name
-
The port name, in
category/name
format - resetFalse
-
If
True
, runs amake rmconfig
for the port, clearing its configuration before setting the desired options
CLI Examples:
salt '*' ports.config security/nmap IPV6=off
salt.modules.freebsdports.config(name, reset=False, **kwargs)
-
De-install a port.
CLI Example:
salt '*' ports.deinstall security/nmap
salt.modules.freebsdports.deinstall(name)
-
Install a port from the ports tree. Installs using
BATCH=yes
for non-interactive building. To set config options for a given port, useports.config
.- cleanTrue
-
If
True
, cleans after installation. Equivalent to runningmake install clean BATCH=yes
.
Note
It may be helpful to run this function using the
-t
option to set a higher timeout, since compiling a port may cause the Salt command to exceed the default timeout.CLI Example:
salt -t 1200 '*' ports.install security/nmap
salt.modules.freebsdports.install(name, clean=True)
-
Lists all ports available.
CLI Example:
salt '*' ports.list_all
Warning
Takes a while to run, and returns a LOT of output
salt.modules.freebsdports.list_all()
-
Clear the cached options for the specified port; run a
make rmconfig
- name
-
The name of the port to clear
CLI Example:
salt '*' ports.rmconfig security/nmap
salt.modules.freebsdports.rmconfig(name)
-
Search for matches in the ports tree. Globs are supported, and the category is optional
CLI Examples:
salt '*' ports.search 'security/*' salt '*' ports.search 'security/n*' salt '*' ports.search nmap
Warning
Takes a while to run
salt.modules.freebsdports.search(name)
-
Show the configuration options for a given port.
- defaultFalse
-
Show the default options for a port (not necessarily the same as the current configuration)
- dict_returnFalse
-
Instead of returning the output of
make showconfig
, return the data in an dictionary
CLI Example:
salt '*' ports.showconfig security/nmap salt '*' ports.showconfig security/nmap default=True
salt.modules.freebsdports.showconfig(name, default=False, dict_return=False)
-
Update the ports tree
- extractFalse
-
If
True
, runs aportsnap extract
after fetching, should be used for first-time installation of the ports tree.
CLI Example:
salt '*' ports.update
salt.modules.freebsdports.update(extract=False)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.freebsdports.html