Skip to content

Commit

Permalink
Bootstrap: Fetch github keys from http not https
Browse files Browse the repository at this point in the history
Using https was failing.

Amend b857a3d
Ref #32
  • Loading branch information
rxaviers committed Oct 22, 2014
1 parent 46bcc8a commit 3a778a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
- name: Download ssh authorized keys
get_url: url={{ item.url }} dest=/tmp/keys/
with_items:
- { url: 'https://github.com/rxaviers.keys' }
- { url: 'https://github.com/nikolavidovic.keys' }
- { url: 'http://github.com/rxaviers.keys' }
- { url: 'http://github.com/dzydzany.keys' }

- name: Assemble authorized_keys
assemble: src=/tmp/keys dest=/root/.ssh/authorized_keys mode=0700
Expand Down

0 comments on commit 3a778a6

Please sign in to comment.