Shows ansible output in real-time instead of buffered. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Run ansible playbook to provision indri"
|
|
|
|
set -euo pipefail
|
|
|
|
export MISE_TASK_OUTPUT=interleave
|
|
|
|
cd ansible
|
|
ansible-playbook playbooks/indri.yml "$@"
|