We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c7d436 + bbacfcb commit ae52135Copy full SHA for ae52135
ansible.cfg
@@ -1,4 +1,6 @@
1
[defaults]
2
nocows = True
3
roles_path = ./roles:/etc/ansible/roles
4
+inventory = inventory
5
+become = true
6
stdout_callback = yaml
tasks/terminal.yml
@@ -7,7 +7,14 @@
7
check_mode: false
8
9
- name: Ensure custom Terminal profile is added.
10
- command: open files/terminal/JJG-Term.terminal
+ copy:
11
+ src: files/terminal/JJG-Term.terminal
12
+ dest: /tmp/JJG-Term.terminal
13
+ changed_when: false
14
+ when: "'JJG-Term' not in terminal_theme.stdout"
15
+
16
+- name: Ensure custom Terminal profile is added.
17
+ command: open /tmp/JJG-Term.terminal
18
changed_when: false
19
when: "'JJG-Term' not in terminal_theme.stdout"
20
0 commit comments