arch.rst 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ==========
  2. Arch Linux
  3. ==========
  4. Installation
  5. ============
  6. Salt (stable) is currently available via the Arch Linux Official repositories.
  7. There are currently -git packages available in the Arch User repositories (AUR)
  8. as well.
  9. Stable Release
  10. --------------
  11. Install Salt stable releases from the Arch Linux Official repositories as follows:
  12. .. code-block:: bash
  13. pacman -S salt
  14. Tracking develop
  15. ----------------
  16. To install the bleeding edge version of Salt (**may include bugs!**),
  17. use the -git package. Installing the -git package as follows:
  18. .. code-block:: bash
  19. wget https://aur.archlinux.org/packages/sa/salt-git/salt-git.tar.gz
  20. tar xf salt-git.tar.gz
  21. cd salt-git/
  22. makepkg -is
  23. .. note:: yaourt
  24. If a tool such as Yaourt_ is used, the dependencies will be
  25. gathered and built automatically.
  26. The command to install salt using the yaourt tool is:
  27. .. code-block:: bash
  28. yaourt salt-git
  29. .. _Yaourt: https://aur.archlinux.org/packages.php?ID=5863
  30. Post-installation tasks
  31. =======================
  32. **systemd**
  33. Activate the Salt Master and/or Minion via ``systemctl`` as follows:
  34. .. code-block:: bash
  35. systemctl enable salt-master.service
  36. systemctl enable salt-minion.service
  37. **Start the Master**
  38. Once you've completed all of these steps you're ready to start your Salt
  39. Master. You should be able to start your Salt Master now using the command
  40. seen here:
  41. .. code-block:: bash
  42. systemctl start salt-master
  43. Now go to the :ref:`Configuring Salt<configuring-salt>` page.