Removed ansible verbose debugging and minor small tweaks

This commit is contained in:
Sagi Dayan 2021-12-18 16:30:00 +02:00
parent 67acabbe1a
commit 7b5e07e2cb
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ Looking just for dotfiles? take a look at `files/dotfiles`
### Running plays
Playbooks are located in `play-books`
Playbooks are located in `playbooks/`
```
$ ./run_play.sh <playbook> # Defaults to workstation

View file

@ -83,7 +83,7 @@ function ide() {
tmux rename-window ${IDE_NAME}
}
# Create a tmux layout with fast
# Create a tmux layout with one command
# Usage: $ layout "<num_rows> [<num_rows>]+ [layout_name]"
# Examples: $ layout "2" Bob # Single column with 2 rows, named Bob
# $ layout "2 1" # Two columns, left column with 2 rows, right column with ine row

View file

@ -21,6 +21,6 @@ ansible-galaxy collection install community.general
ansible-galaxy install hurricanehrndz.rustup
# Run Playbook
ANSIBLE_CONFIG=$(pwd)/ansible.cfg JUNIT_OUTPUT_DIR="/tmp/artifacts" ansible-playbook ${PLAYBOOK} -vvvv || print_fail_and_exit
ANSIBLE_CONFIG=$(pwd)/ansible.cfg JUNIT_OUTPUT_DIR="/tmp/artifacts" ansible-playbook ${PLAYBOOK} || print_fail_and_exit
echo "======> Done."