Thu, 15 Jun 2017 02:41:22 -0400
edit
README.md | file | annotate | diff | comparison | revisions |
--- a/README.md +++ b/README.md @@ -8,15 +8,18 @@ The `gui_enabled` var controls whether o ## TODO +- Switch this to get / make a git mirror for the following: - Adjust to work with ansible-pull via a cloud-config userdata like this: - #cloud-config - packages: - - ansible - - git - runcmd: - - echo -e "[localhost]\n127.0.0.1 ansible_connection=local" >> /etc/ansible/hosts - - ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts - - mkdir /etc/ansible/web - - ansible-pull -d /etc/ansible/web/ -U <git repo URL> -- The above will require a git mirror +```yaml +#cloud-config +packages: + - ansible + - git +runcmd: + - echo -e "[localhost]\n127.0.0.1 ansible_connection=local" >> /etc/ansible/hosts + - ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts + - mkdir /etc/ansible/web + - ansible-pull -d /etc/ansible/web/ -U <git repo URL> +``` +