Compare commits

..

No commits in common. "65eaa031ddf20d10294a4d2d876a49f7abcc624d" and "d69c37089e6053f7ef43c3f1d3491840644fed75" have entirely different histories.

3 changed files with 2 additions and 9 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Deploy a new version to production, using the Ansible playbook in `deploy/deploy.yml`. # Deploy a new version to production, using the Ansible playbook in `deploy/deploy.yml`.
# This skips the build step that normally runs when you just call `bin/deploy`. # This skips the build step that normally runs when you just call `bin/deploy`.
cd $(dirname $0)/../deploy && ansible-playbook deploy.yml ansible-playbook -i deploy/inventory.cfg deploy/deploy.yml

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Set up the deployment environment, using the Ansible playbook in `deploy/setup.yml`. # 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.' 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.'
cd $(dirname $0)/../deploy && ansible-playbook -K setup.yml ansible-playbook -K -i deploy/inventory.cfg deploy/setup.yml

View file

@ -1,7 +0,0 @@
[defaults]
inventory = inventory.cfg
[ssh_connection]
# Pipelining is an optimization that's off by default for compatibility, but runs
# playbooks much faster when it's available. It works in our case, so use it!
pipelining = True