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 6126bcb + 81bd7c4 commit f63213dCopy full SHA for f63213d
Proxmox/Ansible/roles/common/tasks/main.yml
@@ -1,5 +1,13 @@
1
---
2
3
+- name: Install Utilities
4
+ win_shell: ".\\install-utilities.ps1"
5
+ args:
6
+ chdir: 'c:\vagrant\scripts'
7
+ register: utilities
8
+ failed_when: "'Exception' in utilities.stdout"
9
+ ignore_errors: true
10
+
11
- name: Downloading the Palantir WEF Configuration
12
win_shell: ".\\download_palantir_wef.ps1"
13
args:
@@ -53,11 +61,3 @@
53
61
failed_when: "'Exception' in redteam.stdout"
54
62
55
63
- debug: msg="{{ redteam.stdout_lines }}"
56
-
57
-- name: Install Utilities
58
- win_shell: ".\\install-utilities.ps1"
59
- args:
60
- chdir: 'c:\vagrant\scripts'
- register: utilities
- failed_when: "'Exception' in utilities.stdout"
- ignore_errors: true
0 commit comments