python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Ansible group vars not getting loaded
Group vars are not getting imported. The directory structure looks like this:
- ansible.cfg
- testt.yaml
- inventories
- production
- group_vars
- all.yaml
...
PRASHANT JHA
Votes: 0
Answers: 1
Ansible tower - Run multiple playbooks at once
I want to run multiple playbooks at once on ansible tower, How do I create job template for this? Job template is allowing me to select only one playbook at a time.
PRASHANT JHA
Votes: 0
Answers: 2
How do I agree to install the package?
My playbook:
- name: "install software"
hosts: local
connection: local
tasks:
- name: install git
expect:
command: yum install git
...
Aleksey Budaev
Votes: 0
Answers: 2
Ansible playbook to fetch JSON file from an API via 'uri'
I wrote an Ansible playbook intend to fetch the list from an API as JSON file using uri module as below.
- name: API check
gather_facts: no
tasks:
- name : "Get the list as JSON"
...
Peter Walker
Votes: 0
Answers: 2