- Add mise-tasks/provision-indri script to run ansible playbook - Fix transmission_metrics launchctl load to be idempotent - Update CLAUDE.md to reference mise run provision-indri Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
153 B
Bash
Executable file
7 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Run ansible playbook to provision indri"
|
|
|
|
set -euo pipefail
|
|
|
|
cd ansible
|
|
ansible-playbook playbooks/indri.yml "$@"
|