README.md

Thu, 15 Jun 2017 03:02:26 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 15 Jun 2017 03:02:26 -0400
changeset 63
f49b84e25dcc
parent 62
a86cf22abcd6
child 64
48887c0dc48d
permissions
-rw-r--r--

tags

59
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
1 # Devbox playbook
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
2
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
3 This is a playbook that installs dev tools and DE tools I like to have around
60
Meredith <mhoward@roomag.org>
parents: 59
diff changeset
4 and sets up some other preferences like repositories, and drops in my dotfiles.
59
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
5 It's best-tested on Debian, but has some cases for OSX and FreeBSD too.
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
6
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
7 The `gui_enabled` var controls whether or not to install graphical tools.
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
8
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
9 ## TODO
4
ee7f92e88b1a add README.md
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
10
62
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
11 - Switch this to get / make a git mirror for the following:
59
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
12 - Adjust to work with ansible-pull via a cloud-config userdata like this:
f1f2724d73a8 expand readme
Meredith Howard <mhoward@roomag.org>
parents: 4
diff changeset
13
62
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
14 ```yaml
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
15 #cloud-config
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
16 packages:
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
17 - ansible
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
18 - git
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
19 runcmd:
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
20 - echo -e "[localhost]\n127.0.0.1 ansible_connection=local" >> /etc/ansible/hosts
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
21 - ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
22 - mkdir /etc/ansible/web
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
23 - ansible-pull -d /etc/ansible/web/ -U <git repo URL>
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
24 ```
Meredith Howard <mhoward@roomag.org>
parents: 61
diff changeset
25

mercurial