Practice Free EX417 Exam Online Questions
How do you use a machine credential in a job template?
- A . See the Explanation.
A
Explanation:
How do you use a machine credential in a job template?
- A . See the Explanation.
A
Explanation:
How do you use a machine credential in a job template?
- A . See the Explanation.
A
Explanation:
Write a VSCode task that installs Notepad++, assuming you already downloaded the .exe installer to C:Temp.
- A . See the Explanation.
A
Explanation:
– name: Install Notepad++ hosts: windows
tasks:
– name: Install from exe win_package:
path: C:Temp
pp.8.6.Installer.x64.exe
arguments: /S
state: present
Write a VSCode task that installs Notepad++, assuming you already downloaded the .exe installer to C:Temp.
- A . See the Explanation.
A
Explanation:
– name: Install Notepad++ hosts: windows
tasks:
– name: Install from exe win_package:
path: C:Temp
pp.8.6.Installer.x64.exe
arguments: /S
state: present
Create a task in a playbook to copy a file from the control node to C:Tempinfo.txt on the Windows host.
- A . See the Explanation.
A
Explanation:
Create a task in a playbook to copy a file from the control node to C:Tempinfo.txt on the Windows host.
- A . See the Explanation.
A
Explanation:
Create a task in a playbook to copy a file from the control node to C:Tempinfo.txt on the Windows host.
- A . See the Explanation.
A
Explanation:
How do you use lookup to load a variable from a file during playbook execution?
- A . See the Explanation.
A
Explanation:
– name: Use lookup to get content hosts: windows
tasks:
– name: Load variable debug:
msg: "{{ lookup(‘file’, ‘files/env.txt’) }}"
How do you use lookup to load a variable from a file during playbook execution?
- A . See the Explanation.
A
Explanation:
– name: Use lookup to get content hosts: windows
tasks:
– name: Load variable debug:
msg: "{{ lookup(‘file’, ‘files/env.txt’) }}"
