# ==============================================================================
#              SALT PACKAGE MANAGER CONFIGURATION SETTINGS
# ==============================================================================
# There are a number of options that are specific to SPM. They may be configured
# in the master configuration file, or in SPM's own spm configuration file
# (normally located at /etc/salt/spm). If configured in both places, the spm
# file takes precedence. In general, these values will not need to be changed
# from the defaults.
# ==============================================================================


# ------------------------------------------------------------------------------
# Where SPM logs messages.
# ------------------------------------------------------------------------------
spm_logfile: /var/log/salt/spm

# ------------------------------------------------------------------------------
# SPM repositories are configured with this file. There is also a directory
# which corresponds to it, which ends in .d. For instance, if the filename is
# /etc/salt/spm.repos, the directory will be /etc/salt/spm.repos.d/.
# ------------------------------------------------------------------------------
spm_repos_config: /etc/salt/spm.repos

# ------------------------------------------------------------------------------
# When SPM updates package repository metadata and downloads packaged, they will
# be placed in this directory. The package database, normally called
# packages.db, also lives in this directory.
# ------------------------------------------------------------------------------
spm_cache_dir: /var/cache/salt/spm

# ------------------------------------------------------------------------------
# The location and name of the package database. This database stores the names
# of all of the SPM packages installed on the system, the files that belong to
# them, and the metadata for those files.
# ------------------------------------------------------------------------------
spm_db: /var/cache/salt/spm/packages.db

# ------------------------------------------------------------------------------
# When packages are built, they will be placed in this directory.
# ------------------------------------------------------------------------------
spm_build_dir: /srv/spm

# ------------------------------------------------------------------------------
# When SPM builds a package, it normally adds all files in the formula directory
# to the package. Files listed here will be excluded from that package. This
# option requires a list to be specified.
#
# Default: ['.git']
# ------------------------------------------------------------------------------
spm_build_exclude:
  - .git
  - .gitignore
  - debian
  - debian-quilt
  - formula_name
  - Makefile
  - Makefile.builder
  - pkgs
  - rel
  - rpm_spec
  - version

# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
