Old ansible configuration for servers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

install-fish 493B

12345678910111213141516
  1. ---
  2. # Adds the fish-shell release PPA and installs fish.
  3. - name: install python-pycurl (needed to add fish PPA)
  4. apt: pkg=python-pycurl
  5. - name: add fish PPA (Debian)
  6. apt_repository: repo='ppa:fish-shell/release-2' update_cache=yes
  7. when: ansible_os_family == 'Debian'
  8. - name: add fish PPA (Mint)
  9. apt_repository: repo='deb http://ppa.launchpad.net/fish-shell/release-2/ubuntu raring main' update_cache=yes
  10. when: ansible_os_family == 'Linuxmint'
  11. - name: install fish
  12. apt: pkg=fish