We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- hosts: all vars: jenkins_hostname: 192.168.0.1 roles: - role: geerlingguy.java become: yes - role: geerlingguy.jenkins become: yes
ansible-galaxy --ignore-certs install geerlingguy.jenkins
ansible-playbook -i 192.168.0.1, --extra-vars ansible_ssh_user=my_user --extra-vars ansible_sudo_pass='my_pass' --extra-vars ansible_python_interpreter=/usr/bin/python3 playbook.yml
The text was updated successfully, but these errors were encountered:
Add support for ansible playbooks for bootstrapping #43
b894d53
d8a664d
Here's an example for executing ansible for Windows host machines:
ansible -i 192.168.0.1, -e ansible_user='ccc' -e ansible_password='P@ssword' -e ansible_port='5985' -e ansible_connection='winrm' -e ansible_winrm_server_cert_validation=ignore -e validate_certs=false 192.168.0.1 -m win_ping
And here's how to execute an ansible playbook:
ansible-playbook -i 192.168.0.1, -e ansible_user='ccc' -e ansible_password='P@ssword' -e ansible_port='5985' -e ansible_connection='winrm' -e ansible_winrm_server_cert_validation='ignore' -e validate_certs='false' windows.yml
And here's the ansible playbook file to install google chrome:
- hosts: all tasks: - name: Install google chrome package win_chocolatey: name: googlechrome state: present
Sorry, something went wrong.
1838105
0fddae9
b0df58b
chrisipa
No branches or pull requests
The text was updated successfully, but these errors were encountered: