Sun, 14 Jul 2019 04:03:48 -0500
deprecation fixes
12 | 1 | --- |
2 | ||
14 | 3 | # have to: |
4 | # - install/enable xcode | |
5 | # - install macports | |
6 | # - set macports in /etc/paths.d/ ? | |
7 | ||
12 | 8 | - name: Install base packages |
89
86248a83a3dd
apply ansible-lint suggestions
Meredith Howard <mhoward@roomag.org>
parents:
48
diff
changeset
|
9 | macports: |
86248a83a3dd
apply ansible-lint suggestions
Meredith Howard <mhoward@roomag.org>
parents:
48
diff
changeset
|
10 | name: "{{ item }}" |
86248a83a3dd
apply ansible-lint suggestions
Meredith Howard <mhoward@roomag.org>
parents:
48
diff
changeset
|
11 | state: active |
12 | 12 | with_items: |
48 | 13 | - zsh |
12 | 14 | - MacVim |
15 | - ctags | |
16 | - tmux | |
17 | - dejavu-fonts | |
48 | 18 | - git |
19 | - mercurial | |
12 | 20 | tags: packages, install |
21 | ||
22 |