Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Large refactor to support Ansible 2.5 #976

Merged
merged 24 commits into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a6f7ccd
Refactoring, booleans declaration and update users fix
jackivanov Apr 30, 2018
25bdfff
Make server_name more FQDN compatible
jackivanov Jun 5, 2018
51265d5
Rename variables
jackivanov Jun 6, 2018
c40bfd1
Define the default value for store_cakey
jackivanov Jun 26, 2018
356bc38
Skip a prompt about the SSH user if deploying to localhost
jackivanov Jun 26, 2018
fbc9ba8
Disable reboot for non-cloud deployments
jackivanov Jun 27, 2018
9c2a86c
Enable EC2 volume encryption by default
jackivanov Jun 28, 2018
09a9c4c
Add default server value (localhost) for the local installation
jackivanov Jun 28, 2018
2e14d6c
Add default region to aws_region_facts
jackivanov Jun 28, 2018
84a7ff7
Update docs
jackivanov Jun 28, 2018
8712dcb
EC2 credentials fix
jackivanov Jun 28, 2018
d4f9d55
Warnings fix
jackivanov Jul 3, 2018
c4acd6e
Update deploy-from-ansible.md
jackivanov Jul 6, 2018
9429243
Fix a typo
jackivanov Jul 11, 2018
4cea047
Remove lightsail from the docs
jackivanov Jul 11, 2018
606420a
Disable EC2 encryption by default
jackivanov Jul 11, 2018
f06e789
rename droplet to server
jackivanov Jul 11, 2018
bd10bc0
Disable dependencies
jackivanov Jul 11, 2018
1cf953b
Disable tls_cipher_suite
jackivanov Jul 11, 2018
bb88695
Convert wifi-exclude to a string. Update-users fix
jackivanov Jul 12, 2018
961e46b
SSH access congrats fix
jackivanov Jul 12, 2018
a51534f
16.04 > 18.04
jackivanov Jul 13, 2018
81a0410
Dont ask for the credentials if specified in the environment vars
jackivanov Jul 13, 2018
a40ab7f
GCE server name fix
jackivanov Jul 31, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ before_cache:
- sudo chown $USER. $HOME/lxc/cache.tar

env:
- LXC_NAME=ubuntu1804 LXC_DISTRO=ubuntu LXC_RELEASE=18.04
- LXC_NAME=docker LXC_DISTRO=ubuntu LXC_RELEASE=18.04

before_install:
Expand All @@ -67,8 +66,8 @@ install:
script:
# - awesome_bot --allow-dupe --skip-save-results *.md docs/*.md --white-list paypal.com,do.co,microsoft.com,https://github.com/trailofbits/algo/archive/master.zip,https://github.com/trailofbits/algo/issues/new
# - shellcheck algo
# - ansible-lint deploy.yml users.yml deploy_client.yml
- ansible-playbook deploy.yml --syntax-check
# - ansible-lint main.yml users.yml deploy_client.yml
- ansible-playbook main.yml --syntax-check
- ./tests/local-deploy.sh
- ./tests/update-users.sh

Expand Down
Loading