ansible-for-devops icon indicating copy to clipboard operation
ansible-for-devops copied to clipboard

Ansible for DevOps examples.

Results 133 ansible-for-devops issues
Sort by recently updated
recently updated
newest added

https://github.com/geerlingguy/ansible-for-devops/blob/master/molecule/molecule/default/molecule.yml#L6 see: https://github.com/ansible-community/molecule/pull/3802

bug

See: https://www.ansible-semaphore.com A very slick, completely open-source UI for Ansible that is a heck of a lot easier to deploy than AWX, if your needs are met by it.

Hello, The link about Variable Precedence located [here](https://github.com/geerlingguy/ansible-for-devops-manuscript/blob/1acd984d0d2c3501b70f2c1586936428189841fe/chapter5.txt#L710) is broken. Here is a possible fix for [Variable Precedence](https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_variables.html#understanding-variable-precedence). Amazing book so far :) Have a great day.

planned

https://github.com/geerlingguy/ansible-for-devops/issues/297 is closed so there's no need for the TODO to remain in the file.

The example [here](https://github.com/geerlingguy/ansible-for-devops-manuscript/blob/1acd984d0d2c3501b70f2c1586936428189841fe/chapter2.txt#L136) is: ` if ! rpm -qa | grep -qw chrony; then` which can be written simply as: ` if ! rpm -q chrony --quiet; then` or `...

planned

Instead of ``` $ ansible multi -b -m shell -a "tail /var/log/messages | grep ansible-command | wc - l" ``` I think it should be ``` $ ansible multi -b...

bug

" If you want to run a shell script on all the servers every day at 4 a.m., add the cron job with: " ``` $ ansible multi -b -m...

Even after installing the _docker_ Python library - and checking the `requests` module - I got the error message _ModuleNotFoundError: No module named 'requests'_. After getting a bit more familiar...

LENOVO@DESKTOP-GBQPVM8 MINGW64 /c/Devops/BashScripts $ vagrant up scriptbox Bringing machine 'scriptbox' up with 'virtualbox' provider... ==> scriptbox: Checking if box 'geerlingguy/centos7' version '1.2.27' is up to date... ==> scriptbox: Clearing any...