aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMax Campbell <maxc@maxc.in>2019-03-26 09:32:21 +0100
committerEmil Renner Berthing <esmil@labitat.dk>2019-04-01 15:45:44 +0200
commit0c19892158609d1eb64015f84e53eb5685c97441 (patch)
tree65606dba0d9defacafdd34bcb4f816db029bbc45 /README.md
parentaf333f0ec23a9784756a8b0e53a9896d7f61525f (diff)
downloadlabitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.tar.gz
labitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.tar.xz
labitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.zip
Add initial README.md and CONTRIBUTING.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9b82fdb
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+# Labitat Ansible
+
+Ansible playbooks for space infrastructure
+
+## Running ansible
+
+```
+ansible-playbook <playbook>.yml -D [-t <tag>[,<tag2>,..]] [-C]
+```
+- `<playbook>.yml`: the playbook you wish to run
+- `-D`: prints the changes made, fx. the difference between old and updated files
+- `-t <tag>`: limit the run to certain tags, tasks are usually tagged with their name
+- `-C`: don't make any changes, just show what would be changed
+
+example:
+```
+ansible-playbook jumbotron.yml -D -t irssi -C
+```
+
+This will log into the jumbotron server and show how the irssi configuration
+would be updated by your local changes in your ansible repo.
+
+```
+ansible-playbook jumbotron.yml -D -t irssi
+```
+This will actually do the changes, but again limit itself to just the tasks that are
+tagged `irssi`.