-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmacbook_setup.yml
More file actions
35 lines (30 loc) · 987 Bytes
/
macbook_setup.yml
File metadata and controls
35 lines (30 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# For setup run: ansible-playbook macbook_setup.yml -vvv --ask-become-pass
---
- name: 'Initial MacBook configuration'
hosts: macbook
gather_facts: yes
become: yes
become_user: "{{ macbook.home_user }}"
vars_prompt:
- name: global_rubygems_user
prompt: 'RUBYGEMS > Enter your RubyGems User'
private: no
- name: global_rubygems_password
prompt: 'RUBYGEMS > Enter your RubyGems Password'
private: yes
roles:
- { role: macos_config }
- { role: macos_soft, environment: { HOMEBREW_CASK_OPTS: '--appdir=/Applications' } }
- { role: macos_databases }
- { role: macos_go_env }
- { role: macos_monitoring }
- { role: macos_python_env }
- { role: macos_js_env }
- { role: macos_ruby_env }
- { role: macos_rust_env }
- { role: macos_elixir_env }
- { role: macos_scala_env }
- { role: macos_php_env }
- { role: macos_kubernetes_env }
- { role: macos_ai_env }
- { role: macos_post_config }