Salt 16 Debian Repository

Location

Supported Distributions

Adding this repository as an APT source

  1. Launch your terminal application (Terminal, Console, iTerm2, etc...)
    ...
  2. Find out youy distribution by running the following command in your terminal.
    lsb_release --short --codename
    You will see your distribution (for example, on my system it shows xenial):
    xenial
  3. Add the repository for your distribution (from the last command) to your APT sources by running the following command in your terminal.

    For the Xenial distribution run:
    echo "deb https://goodwillcoding.github.io/salt16-debian-repository xenial main #Salt 16 Debian Repository" \
    | sudo tee --append /etc/apt/sources.d/salt16-xenial.list
  4. Import the Salt 16 Debian Repository Public GPG key (which was used to sign with repository) by running the following command in your terminal.

    wget --quiet https://goodwillcoding.github.io/salt16-debian-repository/public.asc --output-document - \
    | sudo apt-key add -
  5. Now refresh your local repository index by running the following command in your terminal.

    sudo apt-get update
  6. The packages from this repository should now be available for installation. You can install any of them by running following command(s) in your terminal.

    To install salt-master package run:
    sudo apt-get install salt-master
    To install salt-minion package run:
    sudo apt-get install salt-minion

Repository created on: 2016-12-31 01:41 PST -0800