소스 검색

Allow adding fish PPA on Mint

master
Chris Smith 10 년 전
부모
커밋
7d4257c50d
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6
    1
      playbooks/includes/install-fish

+ 6
- 1
playbooks/includes/install-fish 파일 보기

@@ -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

Loading…
취소
저장