Procházet zdrojové kódy

Allow adding fish PPA on Mint

master
Chris Smith před 10 roky
rodič
revize
7d4257c50d
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. 6
    1
      playbooks/includes/install-fish

+ 6
- 1
playbooks/includes/install-fish Zobrazit soubor

@@ -4,8 +4,13 @@
4 4
 - name: install python-pycurl (needed to add fish PPA)
5 5
   apt: pkg=python-pycurl
6 6
 
7
-- name: add fish PPA
7
+- name: add fish PPA (Debian)
8 8
   apt_repository: repo='ppa:fish-shell/release-2' update_cache=yes
9
+  when: ansible_os_family == 'Debian'
10
+
11
+- name: add fish PPA (Mint)
12
+  apt_repository: repo='deb http://ppa.launchpad.net/fish-shell/release-2/ubuntu raring main' update_cache=yes
13
+  when: ansible_os_family == 'Linuxmint'
9 14
 
10 15
 - name: install fish
11 16
   apt: pkg=fish

Načítá se…
Zrušit
Uložit