7 lines
149 B
Bash
Executable file
7 lines
149 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ANSIBLE_ROLES_PATH="$HOME/.ansible/roles"
|
|
|
|
ansible-galaxy install -f -r requirements.yml
|
|
ansible-playbook site.yml -i production -bK $*
|