5 lines
351 B
Text
5 lines
351 B
Text
|
#!/usr/bin/env bash
|
||
|
# Set up the deployment environment, using the Ansible playbook in `deploy/setup.yml`.
|
||
|
echo $'Setup requires you to become the root user. You\'ll need to enter the password for your account on the remote web server below, and you must be part of the `sudo` user group.'
|
||
|
ansible-playbook -K -i deploy/inventory.cfg deploy/setup.yml
|