Old ansible configuration for servers
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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