6 |
6 |
7 The `gui_enabled` var controls whether or not to install graphical tools. |
7 The `gui_enabled` var controls whether or not to install graphical tools. |
8 |
8 |
9 ## TODO |
9 ## TODO |
10 |
10 |
|
11 - Switch this to get / make a git mirror for the following: |
11 - Adjust to work with ansible-pull via a cloud-config userdata like this: |
12 - Adjust to work with ansible-pull via a cloud-config userdata like this: |
12 #cloud-config |
|
13 packages: |
|
14 - ansible |
|
15 - git |
|
16 runcmd: |
|
17 - echo -e "[localhost]\n127.0.0.1 ansible_connection=local" >> /etc/ansible/hosts |
|
18 - ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts |
|
19 - mkdir /etc/ansible/web |
|
20 - ansible-pull -d /etc/ansible/web/ -U <git repo URL> |
|
21 - The above will require a git mirror |
|
22 |
13 |
|
14 ```yaml |
|
15 #cloud-config |
|
16 packages: |
|
17 - ansible |
|
18 - git |
|
19 runcmd: |
|
20 - echo -e "[localhost]\n127.0.0.1 ansible_connection=local" >> /etc/ansible/hosts |
|
21 - ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts |
|
22 - mkdir /etc/ansible/web |
|
23 - ansible-pull -d /etc/ansible/web/ -U <git repo URL> |
|
24 ``` |
|
25 |