mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-21 11:23:02 +00:00
Merge pull request #107 from dspolleke/terminal
fix playbook to run terminal on remote hosts as wel
This commit is contained in:
commit
ae521350b9
2 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
[defaults]
|
||||
nocows = True
|
||||
roles_path = ./roles:/etc/ansible/roles
|
||||
inventory = inventory
|
||||
become = true
|
||||
stdout_callback = yaml
|
||||
|
|
|
@ -7,7 +7,14 @@
|
|||
check_mode: false
|
||||
|
||||
- name: Ensure custom Terminal profile is added.
|
||||
command: open files/terminal/JJG-Term.terminal
|
||||
copy:
|
||||
src: files/terminal/JJG-Term.terminal
|
||||
dest: /tmp/JJG-Term.terminal
|
||||
changed_when: false
|
||||
when: "'JJG-Term' not in terminal_theme.stdout"
|
||||
|
||||
- name: Ensure custom Terminal profile is added.
|
||||
command: open /tmp/JJG-Term.terminal
|
||||
changed_when: false
|
||||
when: "'JJG-Term' not in terminal_theme.stdout"
|
||||
|
||||
|
|
Loading…
Reference in a new issue