mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Merge pull request #2691 from holta/ansible-readability-tweaks
scripts/ansible: Minor readability tweaks
This commit is contained in:
commit
3f0110b2db
1 changed files with 6 additions and 3 deletions
|
@ -1,11 +1,14 @@
|
|||
#!/bin/bash -e
|
||||
# FWIW "-e" tries to exit right away on error:
|
||||
# https://tldp.org/LDP/abs/html/options.html
|
||||
# https://stackoverflow.com/questions/9952177/whats-the-meaning-of-the-parameter-e-for-bash-shell-command-line/9952249
|
||||
|
||||
# PLZ SEE http://FAQ.IIAB.IO > "What is Ansible and what version should I use?"
|
||||
# https://github.com/iiab/iiab/tree/master/scripts/ansible.md
|
||||
|
||||
APT_PATH=/usr/bin # Avoids problematic /usr/local/bin/apt on Linux Mint
|
||||
CURR_VER="undefined" # Ansible version you currently have installed
|
||||
GOOD_VER="2.10.6" # Orig for 'yum install [rpm]' & XO laptops (pip install)
|
||||
APT_PATH=/usr/bin # Avoids problematic /usr/local/bin/apt on Linux Mint
|
||||
CURR_VER=undefined # Ansible version you currently have installed
|
||||
GOOD_VER=2.10.6 # Orig for 'yum install [rpm]' & XO laptops (pip install)
|
||||
|
||||
# We install the latest 'ansible-base' from PPA, using an OS 'CODENAME' below:
|
||||
# https://launchpad.net/~ansible/+archive/ubuntu/ansible
|
||||
|
|
Loading…
Add table
Reference in a new issue