chore(ansible): minor updates

This commit is contained in:
Michele Cereda
2024-02-28 09:01:47 +01:00
parent f63a4f4fbd
commit 0d512d9c5b
2 changed files with 4 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ forks=10
gathering=smart
host_key_checking=False
nocows=True
remote_tmp=/tmp
use_persistent_connections=True
verbosity=3

View File

@@ -31,9 +31,9 @@
```sh
# Install.
pip3 install 'ansible'
pip3 install --user 'ansible' && port install 'sshpass' # darwin
sudo pamac install 'ansible' 'sshpass' # manjaro linux
pip3 install --user 'ansible'
brew install 'ansible' 'sshpass' # darwin
sudo pamac install 'ansible' 'sshpass' # manjaro linux
# Generate an example configuration file with all entries disabled.
ansible-config init --disabled > 'ansible.cfg'