From abdd5c1060afd17dd23ab5aec6aa7ddb6d94ff33 Mon Sep 17 00:00:00 2001
From: Michael DeHaan
Date: Sat, 19 May 2012 17:30:30 -0400
Subject: [PATCH] Docs rebuild
---
YAMLSyntax.html | 2 +-
api.html | 2 +-
bestpractices.html | 10 +++++-----
examples.html | 2 +-
faq.html | 2 +-
genindex.html | 2 +-
gettingstarted.html | 6 +++---
index.html | 2 +-
moduledev.html | 2 +-
modules.html | 14 ++++++++------
patterns.html | 2 +-
playbooks.html | 6 +++---
playbooks2.html | 4 ++--
search.html | 2 +-
searchindex.js | 2 +-
15 files changed, 31 insertions(+), 29 deletions(-)
diff --git a/YAMLSyntax.html b/YAMLSyntax.html
index ac1723b52e..efde3dfa32 100644
--- a/YAMLSyntax.html
+++ b/YAMLSyntax.html
@@ -275,7 +275,7 @@ languages:
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/api.html b/api.html
index 2867426a15..d3add2cc39 100644
--- a/api.html
+++ b/api.html
@@ -359,7 +359,7 @@ a conf.d file appropriately or something similar. Who knows?
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/bestpractices.html b/bestpractices.html
index e1977fda50..4806f6722c 100644
--- a/bestpractices.html
+++ b/bestpractices.html
@@ -183,7 +183,7 @@ s.parentNode.insertBefore(ga, s);
Here are some tips for making the most of Ansible.
Group By Roles
-
A system can be in multiple groups. See ref:patterns. Having groups named after things like
+
A system can be in multiple groups. See Inventory & Patterns. Having groups named after things like
‘webservers’ and ‘dbservers’ is repeated in the examples because it’s a very powerful concept.
This allows playbooks to target machines based on role, as well as to assign role specific variables
using the group variable system.
@@ -232,17 +232,17 @@ will require
handlers,
tasks, and
templates
The tasks are individually broken out in ‘acme/tasks/setup.yml’, and handlers, which are common to all task files,
are contained in ‘acme/handlers/main.yml’. As a reminder, handlers are mostly just used to notify services to restart
-when things change, and these are described in ref:playbooks.
+when things change, and these are described in Playbooks.
Including more than one setup file or more than one handlers file is of course legal.
Having playbooks be able to include other playbooks is coming in release 0.5.
Until then, to manage your entire site, simply execute all of your playbooks together, in the order desired.
-You don’t have to do this though, it’s fine to select sections of your infrastructure to manage at a single time.
+You don’t have to do this though. It’s fine to select sections of your infrastructure to manage at a single time.
You may wish to construct simple shell scripts to wrap calls to ansible-playbook.
Miscellaneous Tips
When you can do something simply, do something simply. Do not reach to use every feature of Ansible together, all
-at once. Use what works for you. For example, you should probably not need ‘vars’, ‘vars_files’, ‘vars_prompt’ and ‘–extra-vars’ all at once, while also using an external inventory file.
+at once. Use what works for you. For example, you should probably not need
vars,
vars_files,
vars_prompt and
--extra-vars all at once, while also using an external inventory file.
Optimize for readability. Whitespace between sections of YAML documents and in between tasks is strongly encouraged,
as is usage of YAML comments, which start with “#”. It is also useful to comment at the top of each file the purpose of the individual file and the author, including email address.
It is possible to leave off the “name” for a given task, though it is recommended to provide
@@ -289,7 +289,7 @@ This way you have an audit trail describing when and why you changed the rules a
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/examples.html b/examples.html
index d2d5a1069a..5147ee4b42 100644
--- a/examples.html
+++ b/examples.html
@@ -382,7 +382,7 @@ a simplified syntax for this.
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/faq.html b/faq.html
index bfc49e3048..b1c57591d7 100644
--- a/faq.html
+++ b/faq.html
@@ -386,7 +386,7 @@ tasks – whether for a QA sytem, build system, or anything you can think of
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/genindex.html b/genindex.html
index e48bbe290e..23e3b41d3f 100644
--- a/genindex.html
+++ b/genindex.html
@@ -190,7 +190,7 @@ s.parentNode.insertBefore(ga, s);
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/gettingstarted.html b/gettingstarted.html
index 424f04e404..eb03004085 100644
--- a/gettingstarted.html
+++ b/gettingstarted.html
@@ -236,7 +236,7 @@ $ git checkout -t origin/devel
$ cd ./ansible
$ source ./hacking/env-setup
-If you would like to package Ansible for Homebrew, BSD, or others,
@@ -351,7 +351,7 @@ explore, but you already have a fully working infrastructure!
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/index.html b/index.html
index 732d4a1516..290f62fe9f 100644
--- a/index.html
+++ b/index.html
@@ -447,7 +447,7 @@ Puppet Labs, and is now with ansible newhost.example.com raw -a "yum install python-simplejson"
+
service
Controls services on remote machines.
state:
-- Values are started, stopped, or restarted.
+
- Values are started, stopped, reloaded, or restarted.
Started/stopped are idempotent actions that will not run commands
-unless necessary. restarted will always bounce the service.
+unless necessary. restarted will always bounce the service, reloaded
+will always issue a reload.
enabled:
@@ -493,7 +494,8 @@ Uses chkconfig or updates-rc.d as appropriate.
Example action from Ansible Playbooks:
service name=httpd state=started
service name=httpd state=stopped
-service name=httpd state=restarted
+service name=httpd state=restarted
+service name=httpd state=reloaded
@@ -787,7 +789,7 @@ yum pkg=httpd state=installed
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/patterns.html b/patterns.html
index 5eb7fc050c..11712add4c 100644
--- a/patterns.html
+++ b/patterns.html
@@ -363,7 +363,7 @@ YAML:
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/playbooks.html b/playbooks.html
index 8de9e44b38..49eab7912c 100644
--- a/playbooks.html
+++ b/playbooks.html
@@ -271,8 +271,8 @@ Just Control-C to kill it and run it again with -K.$varname
In templates, the full power of the Jinja2 templating language is also available, which looks like this:
-
-{{ varname }}
+
The Jinja2 documentation provides information about how to construct loops and conditionals for those
who which to use more advanced templating. This is optional and the $varname format still works in template
files.
@@ -471,7 +471,7 @@ Let’s run a playbook using a parallelism level of 10:
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/playbooks2.html b/playbooks2.html
index 682a458a6b..006cef63aa 100644
--- a/playbooks2.html
+++ b/playbooks2.html
@@ -196,7 +196,7 @@ relevant, feel free to skip it. For many people, the features documented in
Accessing Complex Variable Data
-
Some provided facts, like networking information, are made available as nested datastructures. To access
+
Some provided facts, like networking information, are made available as nested data structures. To access
them a simple ‘$foo’ is not sufficient, but it is still easy to do. Here’s how we get an IP address using
Ansible 0.4 and later:
${ansible_eth0.ipv4.address}
@@ -501,7 +501,7 @@ logs from ansible-pull runs would be an excellent way to gather and analyze remo
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/search.html b/search.html
index 397b8941d7..f371034a11 100644
--- a/search.html
+++ b/search.html
@@ -207,7 +207,7 @@ s.parentNode.insertBefore(ga, s);
© Copyright 2012 Michael DeHaan.
- Last updated on May 13, 2012.
+ Last updated on May 19, 2012.
diff --git a/searchindex.js b/searchindex.js
index cb3210ce83..b4c9a61abb 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({objects:{},terms:{facter_operatingsystem:10,kickstart:10,comprimis:3,poorli:3,four:8,prefix:[8,10,6,7,11],sleep:10,forget:[10,11],whose:10,ebuild:0,aur:0,under:10,spec:7,everi:[0,1,2,7,10,11],risk:10,ansible_virtualization_rol:6,redact:6,upstream:0,affect:[3,4,6],macaddress:6,ansible_librari:[],shlex:4,vars_prompt:[10,1],saltstack:[],x86_64:[9,6],awwxvv:6,seper:[3,10,5,6,1],direct:[5,7],chef:[3,5],second:[10,11],blue:10,thunder:5,children:8,"new":[10,5,6],net:[0,2,6,5,4,8,9,11],ever:[3,4],told:7,unpars:4,behavior:6,eckersberg:[5,2],hera:8,never:[9,5,4],here:[0,1,3,4,7,8,9,10,11],herd:5,path:[4,6,7,11],datetim:4,permit:[],aka:10,somethingels:10,brought:[],unix:[3,5],cobblerd:9,total:7,unit:4,highli:4,describ:[1,7],would:[0,1,6,5,4,7,9,10,11],h3d850bdf:[],ansible_memtotal_mb:6,noarch:0,program:[3,2,6,5,4,7,11],overhead:3,typo:4,recommend:[4,1],type:[3,6,5,4,9,10],tell:[0,8,6,11,3],notif:5,notic:5,warn:4,relai:7,hold:10,must:[4,10,9,6,7],join:[],restor:6,setup:[0,1,3,6,4,9,10,11],work:[0,1,3,5,6,7,8,9,10,11],erb:5,virttyp:6,ansible_ssh_host_key_rsa_publ:6,root:[0,1,3,5,7,10,11],overrid:9,os_default:10,give:2,rpath:3,indic:[6,7],somefil:7,want:[0,1,2,6,5,4,7,9,10,11],end:[3,5,6,7],hoc:[3,5,6,7,11],quot:[10,11],how:[3,1,2,6,5,4,7,8,9,10,11],hop:5,yum:[0,1,3,6,4,7,10,11],perspect:9,updat:[3,10,6,11],recogn:[7,11],passwordless:11,after:[1,6,5,4,7,8,11],lab:[3,5],befor:[3,6,5,4,7,10,11],ohai_:[6,7],arch:[0,3],parallel:[3,5,10,7,11],interpol:10,ansible_product_seri:6,bootstrap:[0,5,6,3],credenti:11,greek:8,unpaus:6,maintain:[0,3],environ:[3,6],exclus:10,idontknow:[],order:[3,5,1,7],oper:[3,10,6,7,11],over:[3,5,8,9,10,11],failur:[9,5,4],orang:2,becaus:[1,2,5,4,9,10,11],rpmbuild:0,ansible_interfac:6,zeu:8,vari:10,myfil:6,streamlin:10,cli:[9,11],img:3,fix:0,better:[6,11],offic:3,easier:[3,1,2,5,4,11],them:[0,1,2,3,4,5,6,7,8,10,11],thei:[3,6,5,4,7,8,9,10,11],etc_acme_conf_acm:1,safe:[0,7],"break":7,glorifi:3,jinja2:[0,5,6,7,10,11],mgmt:9,httpd_sys_content_t:6,choic:3,vidal:5,bonu:9,timeout:10,each:[3,1,2,6,5,4,7,9,10],debug:2,mean:[3,2,6,5,4,7,10],playbooks2:[5,1],logo:3,contend:5,network:[3,5,10],content:[3,4,10,6,7],adapt:9,got:5,forth:7,site_fact:4,ntp:[8,6,11],nightmar:3,free:[5,10],standard:[8,4],dotnet:2,fixm:[],reconfigur:[5,1],openssh:[3,5],traceback:4,isn:[3,5,4],rang:[3,6],render:6,wast:3,restrict:4,hook:6,instruct:[0,5,3],alreadi:[0,3,5,4,7,9],van_halen_port:7,massiv:3,primari:[9,6],rewritten:[],top:[5,4,1,7],sometim:[10,6],master:[9,6],too:[3,2,5,4,8,9,11],similarli:[3,9,10],john:[5,2],iptabl:[],ansible_memfree_mb:6,tool:[9,3,5,10,11],took:5,"80ghz":6,somewhat:9,technic:[9,6],freemem:6,silli:[],target:[3,8,1,7],keyword:[5,10],provid:[3,1,2,6,5,4,7,9,10,11],tree:[4,9,6],project:[0,1,2,3,5,7,10],ansible_distribution_releas:6,minut:[5,11],uses_cv:2,recheck:4,provis:5,fashion:5,abov:[10,9,4,7,11],runner:9,ram:5,mind:[3,5,4],raw:[3,6],aforement:8,seem:[5,10,7],seek:6,client:3,even:[5,7,8,9,10,11],though:[3,1,6,5,4,9],limitless:10,what:[0,1,2,3,4,5,6,7,9,10],regular:7,bsd:[0,5],boxsubscrib:3,simplic:3,don:[0,1,3,6,5,4,7,8,10,11],doc:[0,3],doe:[3,6,5,4,8,9,10,11],declar:7,wildcard:8,came:9,cobbler_external_inventori:9,syntax:[3,1,2,5,7,10,11],pkg:[10,6,7,11],radic:3,identifi:5,pki:[3,5],absolut:[6,11],northeast:8,acquir:3,explain:[9,4],configur:[0,1,2,3,5,6,7,8,9,10,11],apach:[5,10,7,11],ldap:9,stop:[0,1,2,6,5,4,7,8,9,10,11],saturn:8,bar:[8,9,6,7],excel:[3,5,10],method:9,bad:4,respond:7,richer:5,resist:1,result:[3,6,5,4,9,10],fail:[9,3,5,4,7],hash:[10,9,4,2],hammer:8,best:[3,1,6,5,4,7,10],subject:[5,10],heterogen:1,databas:[3,10,9,6,7],discoveri:[10,6],figur:5,simplest:4,awai:[5,10],irc:[0,2,6,5,4,8,9,11],approach:[3,5,10],attribut:6,manpag:6,extens:[3,5],recent:5,easi:[0,1,3,5,6,8,10,11],howev:[8,5,4,11],against:[3,5,10,7,8],logic:3,somelist:10,com:[0,3,6,4,8,9],compromis:5,assur:[10,7],height:3,guid:[],assum:[3,9],speak:6,multiplay:3,ansible_library_path:4,three:[8,6],been:[9,3,5,11],much:[3,2,5,6,7,10,11],interest:[0,9],basic:[0,1,2,3,5,4,7,8,9,10,11],tini:10,quickli:[3,11],life:3,nobodi:4,ani:[0,1,3,6,5,4,7,9,10,11],enterprisei:9,child:3,emploi:2,ugli:10,exception:5,servic:[3,1,6,4,7,8,10,11],vars_fil:[10,1,7],aim:5,tabl:[],conf:[1,6,7,9,10,11],module_nam:[8,9],somekei:4,sever:[5,2],cfengin:5,inventori:[0,1,3,6,7,8,9,10,11],perform:[3,5,10],make:[0,1,3,6,5,4,7,8,9,10,11],complex:[3,5,10,7],split:4,complet:[5,10,1,2,7],wheel:[10,6],ansible_arch2:[],fragil:3,selevel:6,rail:5,hand:10,rais:[10,4],ownership:11,refin:[],tune:[0,10],speakerdeck:3,kept:[5,7],scenario:[3,9],ansible_:[10,7],hypothet:[],deal:4,tho:[],contact:[0,9,6],thi:[0,1,2,3,4,5,6,7,8,9,10,11],endif:10,programm:[9,5],everyth:[],left:[],protocol:6,just:[0,1,2,3,5,4,7,8,9,10,11],photo:[],human:[7,2],braces_syntax:[],yet:[0,9,6,11,3],languag:[0,2,3,6,5,4,7,8,9,10],expos:1,spread:3,els:7,ffffff:4,save:[4,10,6,7],hat:[3,5],applic:[9,3,5,10,7],quirk:2,fusion:6,background:[3,11],daemon:[3,5],specif:[1,5,6,7,8,9,11],arbitrari:[10,5,6],manual:[5,7,11],remind:[10,4,1],el6:6,unnecessari:6,groups_logo_sm:3,right:[],ansible_form_factor:6,maxim:5,dead:3,born:5,intern:4,heritag:[],successfulli:3,txt:[6,11],forcibl:[],bottom:7,tracker:[0,3],somelog:6,foo:[6,7,8,9,10,11],localhost:6,core:[3,4,5,6,11],plu:7,web2:9,web1:9,promot:[],repositori:1,peer:[3,5],"super":3,sshd:3,eat:11,surround:11,simul:10,commit:1,produc:4,xyz:6,contriv:[],down:[9,6,7],contrib:4,eth0:6,git:[0,1,3,6,5,4,10,11],fabric:[3,5],wai:[0,1,3,6,5,4,7,9,10,11],support:[0,3,5,6,7,9,11],happi:3,avail:[0,1,2,6,5,4,7,9,10,11],gif:3,reli:[3,5,10],gid:6,wordpress:7,call:[1,2,6,4,7,9],fork:[9,5,10,11],head:[6,11],python26:0,form:[3,2,4,7,8,10],forc:[0,6],"true":[2,6,4,7,8,10],freenod:[0,2,3,6,5,4,8,9,11],absent:[6,11],inquir:4,maximum:10,until:[10,4,1],ansible_fqdn:6,rerun:7,adopt:5,"abstract":5,fedoraproject:[],exist:[3,5,6,7,9,10,11],door:5,ship:[4,6],check:[10,6,11],self_destruct_countdown:8,encrypt:5,tip:[3,8,10,1,7],role:[3,10,6,1,7],test:[0,3,6,5,4,9],tie:9,unlimit:3,maxrequestsperchild:8,node:[0,3,6,5,4,9,10,11],intend:[4,6],devop:3,intent:[],consid:[4,1,7],faster:[5,10],anywher:[],ignor:4,time:[0,1,2,3,4,5,6,7,8,9,10,11],push:[3,5,10,7],concept:[9,1,11],skip:10,consum:5,invent:[],operatingsystem:10,decid:[5,4,11],middl:[],depend:[4,10,5,6,11],graph:5,readabl:1,decis:10,southwest:8,sourc:[0,1,2,3,4,5,6,7,9,10,11],string:[4,6,8],condit:[3,10,7],word:9,brows:4,level:[3,6,7,2],did:[10,9,4],item:[9,10,2],team:5,ansible_product_nam:6,prevent:4,trend:6,anaconda:10,port:[8,5,11],favcolor:[10,9,4,11],ansible_distribution_vers:6,current:[0,10,5,4,11],suspect:[],gener:[0,5,4,9,10,11],address:[3,1,5,6,8,9,10],along:[4,6,7],wait:10,box:[3,6,11],precursor:3,extrem:[0,5,10,3],bob:7,commonli:[11,2],ourselv:7,regardless:[3,5,7,2],extra:[5,10,1],tweak:1,modul:[0,1,3,6,5,4,7,9,10,11],userdel:6,prefer:[8,10,4,11],instal:[0,3,6,5,4,7,10,11],httpd:[8,10,6,7,11],prove:10,is_cento:10,visit:3,perl:11,live:0,handler:[11,6,1,7],criteria:10,msg:[9,4],scope:6,checkout:[0,4,10,6,3],ntpserver:[8,9,6],idempot:[3,6,5,4,7,11],share:[0,10,9,4,3],claus:10,templat:[3,1,6,5,4,7,9,10,11],easiest:[0,10,3],get_xml:6,ibm:3,module_arg:9,prepar:4,uniqu:3,cat:[],whatev:4,purpos:[8,6,1],claim:1,hostvar:10,chip:3,agent:[0,5,11],critic:3,occur:[],alwai:[4,5,6,7],multipl:[1,5,6,7,8,9,10,11],ping:[0,9,6,3],uptim:9,write:[3,1,2,6,5,4,7,10,11],purg:6,somevalu:[10,4],parameter:7,map:[],mar:8,max:11,clone:[0,4],usabl:7,membership:[10,11],mai:[0,1,2,6,4,7,9,10,11],underscor:6,data:[3,2,6,5,4,9,10],man:[],poseidon:8,practic:[3,1,2,5,6,7,10],seuser:6,explicit:6,predic:6,inform:[3,5,6,7,9,10,11],"switch":5,mango:2,combin:2,talk:[8,7],nbsp:3,still:[0,5,4,7,8,9,10],mainli:5,facter_:[6,7],jid:11,overlord:[],group:[0,1,2,3,4,5,6,7,8,9,10,11],monitor:9,polici:6,yaml:[3,1,2,5,7,8,10],curli:11,intl:3,mail:[0,1,2,6,5,4,7,8,9,10,11],job_statu:[],main:[10,9,4,1,7],bounc:[6,7],non:[4,6,7,8],env:0,half:5,now:[0,3,6,5,4,7,9,10,11],discuss:5,setyp:6,halon_system_timeout:8,term:11,name:[3,1,2,6,4,7,8,9,10,11],config:[3,9,7],didn:[5,11],crypto:3,separ:7,arg1:6,laserllama:3,yeah:[],wrap:1,backport:[0,6],facter:[3,5,6,7,10,11],happen:[9,5],likes_emac:2,shown:4,space:[3,6],infrar:[],profil:9,intermix:3,internet:3,correct:[3,5,7,2],ksmeta:9,lag:6,state:[3,6,5,4,7,8,10,11],migrat:3,argv:4,args_fil:4,theori:7,org:[0,6,11],care:6,reusabl:4,suffici:10,frequenc:10,synchron:[10,7],thing:[0,1,2,3,5,4,7,8,10,11],place:3,raleigh:[3,11,8],router:6,think:[3,10,5,4,1],frequent:[3,9,10],first:[0,3,5,6,8,10,11],origin:0,directli:[4,9,6,7,11],onc:[1,6,5,4,7,8,10],arrai:10,yourself:7,fast:[3,5],oppos:11,open:[10,5,4,7],somegroup:6,given:[10,5,6,1,11],args_data:4,convent:[3,9,4],width:3,white:4,especi:[5,10],copi:[3,10,9,6,11],specifi:[0,2,3,6,5,4,7,10,11],retyp:0,netmask:6,github:[0,1,2,3,6,4,7,9,10],mostli:[6,1],than:[0,1,2,3,4,5,6,7,10,11],cmdb:9,wide:5,were:[3,5,10,11],pre:[],sai:[0,3,5,6,7,10,11],nicer:[],argument:[6,4,7,8,9,11],dash:2,loki:8,sat:5,engin:[],squar:[],alias:6,destroi:6,note:[0,6,4,7,9,10,11],altogeth:3,ideal:[3,5],denomin:1,take:[4,5,6,7,11],noth:[6,7,2],channel:[0,2,6,5,4,8,9,11],begin:[3,11,2],sure:[8,10,7,11],normal:[9,11],track:[0,10,11],beta:[],pair:[4,6,2],later:[0,3,6,4,7,8,10,11],meanwhil:5,runtim:10,show:[10,11],cheat:5,aggregr:4,geographi:1,permiss:[0,11],hack:[0,4,3],help:[0,1,2,3,4,5,6,7,8,9,10,11],xml:2,onli:[0,3,6,5,4,7,9,10,11],explicitli:[6,7],transact:10,enough:[8,5,11],somevar:10,analyz:10,nearli:[6,7,2],variou:[10,5,6,7],get:[0,2,3,6,5,4,7,10,11],soon:[],repo:[4,6,11],ssl:[3,5],cannot:[],ssh:[0,3,5,6,8,9,10,11],requir:[0,1,3,6,5,4,9,10,11],some_file_path_foo:1,where:[0,1,3,6,5,4,9,10],wiki:[],hierachi:[],ansible_product_vers:6,ansible_distribut:[10,6],detect:6,kei:[0,2,3,6,5,4,7,9,10,11],innov:3,review:[3,1,5,6,7,10],behind:[5,6],ansible_system_vendor:6,between:[3,5,10,1,7],"import":[3,10,9,4,11],across:5,cycl:[0,3],come:[3,10,4,1],timmi:7,contract:9,tutori:[3,4],mani:[6,4,7,9,10,11],setenforc:7,among:5,color:[10,4],overview:2,inspir:[3,5],period:10,featur:[0,1,3,5,7,10],colon:[8,7],inventory_hostnam:10,homebrew:0,poll:[3,10,11],other_vari:10,coupl:5,rebuild:[],rubi:[2,6,5,4,10,11],those:[6,7,8,9,10,11],"case":[3,6,5,4,10,11],md5sum:6,straighten:5,trick:[],cobbler:[9,3,5],newhost:6,stdout:9,worri:[5,10],destin:6,myapp:[10,11],chkconfig:6,http_port:[8,7],develop:[0,1,2,3,4,5,6,7,10],ansible_architectur:6,author:[3,1],same:[0,1,2,7,8,9,10,11],html:5,pad:[],pai:11,document:[1,2,5,4,7,9,10,11],week:3,webserv:[3,1,6,7,8,9,10,11],nest:[4,10,6],driven:[3,9],capabl:1,fruit:2,interventori:[],improv:4,extern:[3,9,10,1],appropri:[9,10,5,6,11],without:[5,4],model:[3,5],dereferenc:[],execut:[3,1,6,5,4,7,9,10,11],when:[0,1,3,6,5,4,7,9,10,11],rest:[],kill:7,versu:[0,5,1,3],miscellan:[3,1],trigger:[5,6,7],except:4,littl:[9,3,5],otherus:11,blob:9,notori:5,vulner:5,real:[0,10,7],around:[0,5],ohai:[3,5,6,7,10,11],read:[0,2,3,4,9,11],dark:9,world:[0,5,10,7],intel:6,whitespac:1,integ:6,server:[3,5,6,7,10,11],either:[9,8,10,5,6],output:[9,4,5,6,7],manag:[0,1,2,3,4,5,6,7,8,9,10,11],sneaker:[],titan:8,ansible_processor:6,noon:3,definit:10,legal:[4,1],moon:8,exit:[9,4],complic:[3,5],refer:[10,9,6,7,11],ansible_swaptotal_mb:6,power:[0,1,3,5,7,9,10],broken:1,fulli:[0,6],"throw":5,src:[3,6,7,9,10,11],stone:4,central:[3,5],acm:[1,11],srv:[10,9,6,7,11],industri:[3,5],mytempl:6,effici:[5,10],terminolog:9,somescript:6,multinod:5,your:[0,1,3,6,5,4,7,8,9,10,11],stare:4,log:[4,10,5,6,7],area:[],aren:[8,5],start:[0,1,2,3,5,6,7,8,9,11],interfac:5,low:6,lot:[3,10,4,1,11],ipv6:6,congratul:0,strawberri:2,dirti:6,possibl:[1,4,7,8,9,10,11],"default":[0,3,5,6,8,10,11],ansible_fact:4,stacktrac:4,connect:[5,10],tasti:2,uid:6,creat:[0,3,5,6,7,9,11],certain:[3,10,5,6,7],strongli:[3,5,1],deferenc:[],file:[0,1,2,3,6,4,7,8,9,10,11],again:[5,4,7],googl:[0,1,2,3,4,5,6,7,8,9,10,11],compel:[],orient:[3,7],valid:4,you:[0,1,2,3,4,5,6,7,8,9,10,11],external_var:10,poor:4,sequenc:3,symbol:6,"60k":[3,5],directori:[3,1,2,6,4,7,10,11],invest:5,descript:[6,1,7],chown:6,potenti:[3,10],cpu:6,all:[0,1,2,3,4,5,6,7,8,9,10,11],consider:9,selinux:[6,7],lack:3,month:0,abil:5,follow:[0,5,6,8,9,10,11],alt:3,scp:11,nors:8,dehaan:3,mcollect:[],arbitari:2,introduc:[],liter:6,"1pm":3,fals:[10,2],faq:[3,5],fall:10,veri:[3,1,5,6,7,9,10,11],condition:7,list:[0,1,2,3,4,5,6,7,8,9,10,11],sane:5,stderr:4,small:[3,5,10,2],testuser2:10,testuser1:10,enterpris:0,zero:4,design:[3,5,11,8],pass:[0,3,6,4,7,9,10,11],further:[3,5,2],deleg:5,sub:3,section:[0,1,3,5,6,7,8,10,11],abl:1,delet:[6,11],abbrevi:2,version:[0,1,3,6,7,10,11],"public":10,hasn:5,full:[3,10,7],themselv:[],shouldn:[5,10],first_available_fil:10,modifi:4,valu:[3,2,6,4,7,9,10,11],ahead:7,likin:5,memcach:7,prior:[10,6],amount:9,pick:[5,11],action:[3,10,9,6,7],via:[0,9,10,3],shorthand:[3,10,4],factnam:10,managememnt:3,href:[],select:[3,1,6,4,7,8,10],distinct:3,two:[3,6,7,8,9,10],rhel:[0,3],virt:[3,6],taken:[5,7],kick:[10,11],more:[0,1,3,5,6,7,8,10,11],flat:7,desir:[3,4,6,1,7],flag:[],particular:[3,6,7,8,9,10,11],known:6,compani:5,cach:6,none:[9,6],pkgbuild:0,hous:3,dev:5,remain:3,learn:[0,1,2,3,5,4,7,8,10],prompt:[3,10,7,11],yamllint:2,moduledev:[],accept:[4,6],minimum:[10,4,7],explor:[0,9],cours:[5,10,1],newlin:[],secur:[3,10,5,6],rather:[10,5,6],anoth:[1,2,5,6,7,10,11],simpl:[3,1,2,5,7,9,10,11],distro:9,resourc:[3,10,5,6,7],referenc:[8,7],variant:0,ff0000:4,neccesssari:3,unlink:6,associ:2,"short":[8,0,5,10,3],rotat:7,xmpp:5,mission:3,uvh:0,through:[0,6,11,3],hierarchi:5,fff:[],suffer:5,paramet:[4,10,6,7],style:4,pend:[],rapidli:9,might:[10,9,4,7],wouldn:[9,5],good:[3,5,4,7,9,10],"return":[9,3,4,5,6],food:2,framework:[9,3,5],botnet:[3,5],odin:8,neccessari:10,unlik:[5,7],mysteri:10,easili:[0,3,5,9,10,11],achiev:4,found:[10,9,4],only_if:10,id_rsa:[0,11],subsystem:[3,5,6],harm:[],mental:5,hard:5,idea:[0,1,2,3,4,5,6,7,8,9,10,11],crontab:10,realli:[3,2,6,5,4,7],expect:[9,10,7],variablenam:6,beyond:10,event:[4,5,6,7],safeti:[],bubbl:[10,6,7],print:[9,4],qualifi:6,proxi:8,advanc:[9,3,5,10,7],pub:11,reason:[9,10,5,4,7],base:[3,5,10,1],believ:5,ask:[0,7,11],bash:[0,5,4,11],basi:7,pyyaml:0,sytem:5,launch:[10,7],omit:1,ansible_system:6,assign:[8,9,10,1],feed:[],major:9,notifi:[11,5,4,1,7],obviou:3,feel:[10,2],exchang:10,number:[3,5,6,8],placehold:[10,7],done:[0,1,5,6,8,10],least:1,stabl:0,differ:[0,1,3,5,6,7,9,10,11],list_vm:6,guest:6,script:[3,1,6,5,4,9,10,11],interact:11,construct:[9,5,10,1,7],camelot:10,make_databas:6,statement:[4,7],banana:[],store:[9,6],option:[0,1,6,5,4,7,9,11],part:[3,10,5,6],pars:[5,4],reinstal:3,kind:[5,4],grep:[],remot:[0,3,6,7,10,11],remov:[10,6,11],reus:[3,10,7],architect:3,str:4,jvmdhw:6,toward:10,cleaner:10,comput:5,seth:5,packag:[0,1,3,6,5,4,10,11],imagin:[],createhom:6,equival:10,self:[5,4],centos6:9,build:[9,0,5,4],brace:11,distribut:[0,5,1,3],passwd:6,choos:[6,7],reach:[3,1],most:[3,1,2,5,6,7,11],plai:[3,10,6,7],plan:5,alpha:6,cover:[9,3,5,11],clojur:4,clean:5,latest:[0,6,7,11],awesom:[3,6,7],ansible_processor_count:6,alphanumer:6,devolv:3,mpd_ring:[],particularli:[3,10,7],fine:[4,1],find:[9,4,7],impact:5,firewal:3,pretti:[9,5,10],solut:5,olympu:8,yml:[10,1,7],remedi:[3,10],long_running_oper:11,financ:3,nativ:10,restart:[1,5,6,7,8,11],mdehaan:[6,11],dollar_sign_syntax:[],common:[3,10,4,1,2],wrote:4,set:[0,1,3,6,5,4,7,8,10,11],dump:4,see:[0,1,2,3,4,5,6,7,8,9,10,11],sec:10,arg:4,disadvantag:3,setsebool:7,expert:5,someth:[1,5,4,7,9,10],restructur:7,experi:5,altern:[10,11],solo:[],numer:[],aserv:0,solv:3,foo_port:[],popul:9,both:[3,10,5,4,11],last:[0,3],delimit:6,thor:8,context:6,whole:5,load:[],simpli:[6,1,7],point:[9,10,1],etc_other_conf_oth:1,header:8,shutdown:[10,6],suppli:6,asdf:8,backend:3,devic:6,due:[0,5,4,3],empti:9,ran:3,escape_pod:8,strategi:5,wish:[0,1,2,6,7,9,10],fire:[3,5,10],imag:3,great:[3,10,5,4],gap:5,understand:4,func:[3,5],educ:4,look:[3,6,4,7,8,10,11],straight:11,batch:[3,5],"while":[3,5,10,1,7],unifi:3,match:[4,7],facter_hostnam:[7,11],error:[4,10,5,6],cleanup:10,loop:[3,10,7],pack:9,pragmat:3,motd:[9,7,11],max_client:7,readm:4,jpg:[],itself:[9,0,5],cento:[0,10,6,3],fedora:0,minim:[0,4],shorter:4,higher:[3,10],optim:1,painless:3,temporari:[],user:[3,1,5,6,7,9,10,11],yesterdai:3,built:[9,0,5,10,11],lower:[5,4],task:[3,1,5,7,10,11],older:6,entri:3,spent:5,expens:9,spend:5,explan:4,amp:[8,9],love:[],also:[0,1,2,3,4,5,6,7,8,9,10,11],async_wrapp:4,appli:[8,10,6,7],input:[3,10,4],bin:[0,6,4,7,8,9,10,11],march:4,format:[3,2,5,6,7,8,11],folk:4,judgement:6,nginx:6,game:3,quest:10,bit:[10,5,6],name_of_fact:[],knock:5,capital_of_assyria:[],signal:5,manifest:5,api:[9,3,4,5,6],popular:3,often:[9,3,5,10,1],simplifi:11,creation:11,some:[0,1,3,6,5,4,7,8,9,10,11],back:[0,5,10,7,11],scale:[3,5,10],per:9,larg:5,machin:[3,1,6,5,4,7,11],previou:10,run:[0,2,3,6,5,4,7,8,9,10,11],step:[3,10,5,6,7],squeez:6,meantim:5,impor:[],othervar:[],ansible_eth0:[10,6],block:10,primarili:6,pythonpath:[],within:[8,10,5,6],ensur:[3,5,6,7,10,11],chang:[0,1,3,6,4,7,10,11],bserver:0,few:[],question:[0,1,2,3,4,5,6,7,8,9,10,11],"long":[0,3,5,6,9,10,11],custom:[3,5],includ:[3,1,6,5,4,7,9,10,11],suit:[5,7],datastructur:[9,10],host5:9,foosbal:6,lint:2,link:[4,6],newer:0,line:[0,2,3,6,5,4,7,8,9,10,11],info:[3,9,6,11],caller:6,planet:3,highlight:[],similar:[9,6,11],curv:[3,5],constant:1,parser:4,doesn:[3,9,10,11,2],repres:[9,2],chat:[0,2,3,6,5,4,8,9,11],coder:5,crypt:[6,11],chgrp:6,bracket:8,librari:[4,6,2],peopl:[3,10,8],nice:[3,7],asciidoc:[],meaning:6,far:[3,11,2],hello:0,jupit:8,pluggabl:[3,5],code:[0,1,3,6,5,4,9,10,11],async_statu:11,privat:10,sensit:[3,10],elsewher:11,friendli:3,send:10,autostart:6,sens:6,blindingli:3,sent:4,logtre:6,signfic:4,implicitli:5,relev:[10,5,4],recip:0,magic:[3,10,5,4,7],ansible_kernel:6,michael:3,fewer:10,"try":[9,3,10,5,4],pleas:[9,0,5],malici:5,natur:3,cron:[5,10],download:0,append:6,compar:[3,5],access:[3,10,6,11],can:[0,1,2,3,4,5,6,7,8,9,10,11],chose:[],let:[0,2,3,6,4,7,9,11],ubuntu:6,sinc:[3,9,6,1,11],convert:4,hypervisor:6,technolog:3,typic:[5,11],employe:[5,2],win:[],app:5,apt:[3,10,6,1,11],"boolean":2,cloud:5,from:[0,1,2,3,4,5,6,7,9,10,11],usa:8,commun:[9,5],doubl:11,upgrad:[6,11],next:[0,7],ansible_python_vers:6,usr:[0,6,4,7,8,9,11],sort:5,dbserver:[8,1],about:[0,1,2,3,4,5,6,7,10,11],trail:1,train:5,starter:[4,7],account:[0,6,7,11],retriev:10,tunnel:3,alia:[8,6],alic:7,fetch:[3,10,6],proof:4,control:[3,1,6,5,4,7,9,10,11],tar:[0,6],process:[3,5,6,7,11],lock:[5,10],sudo:[11,0,5,7,3],high:[4,11],knows_oop:2,tag:[0,6,3],tab:7,tarbal:6,onlin:2,surfac:[3,5],lame:2,lepton:4,subdirectori:6,wolf:9,panic:10,stock:[],express:[3,2,4,7,8,9,10],gentoo:[0,3],attent:11,tier:3,ansible_host:0,orchestr:[3,5,7],correspond:6,element:[9,10],issu:[0,5,3],allow:[3,1,6,5,4,9,10,11],move:[6,7],elit:2,comma:6,release_vers:[],bunch:8,taboot:5,infrastructur:[0,1,3,5,7,8],anyon:5,ansible_product_uuid:6,dag:5,greater:8,python:[0,2,3,6,5,4,9,10,11],auto:[9,4],dai:5,devel:0,mention:7,rubygem:11,instead:[10,5,6,1,11],strive:4,multiprocess:5,anyth:[9,4,5,6],edit:[0,9,6],mode:[3,10,5,6,11],grok:3,bump:0,our:[3,11,2],patch:5,some_serv:8,special:10,out:[3,1,6,5,4,7,9,10,11],variabl:[3,1,6,5,4,7,8,9,10,11],reboot:[6,7,11],rel:6,"_default":6,ref:[5,1],dive:7,red:[9,3,5,4,11],clarifi:[],insid:[8,10],manipul:[6,11],ansible_machin:6,dictionari:[10,9,4,2],releas:[0,1,3,5,6,7,10],indent:2,could:[9,10,5,4,7],put:[0,1,6,8,10,11],fqdn:[],keep:[0,10,9,4,1],adrian:5,retain:5,stuck:7,localdomain:6,softwar:[3,1,5,6,9,10,11],qualiti:4,scene:6,echo:[0,9,10,11],date:[0,4],puppet:[9,3,5],submit:[3,5],owner:[6,11],prioriti:6,ansible_lo:6,perfectli:0,mkdir:11,system:[0,1,3,6,5,4,7,8,9,10,11],messag:[9,4,5,6],attack:[3,5],pattern_goes_her:8,termin:11,"final":6,ipv4:[10,6],shell:[3,1,6,4,7,9,11],"var":[3,1,6,7,8,10],rst:[],exactli:6,daemonless:3,intervert:10,charact:[6,2],favorit:[3,10],sysadmin:5,ansible_processor_cor:6,have:[0,1,2,3,4,5,6,7,8,9,10,11],close:[3,4],need:[0,1,2,3,4,5,6,7,8,9,10,11],turn:[3,10,5,4],border:[],paramiko:0,cellspac:[],mix:[8,10,6,7],baisc:[],which:[0,1,2,3,5,6,7,8,9,10],datacent:1,with_item:10,divers:3,singl:[1,5,7,9,10,11],unless:[10,5,6,7],deploy:[11,0,5,7,3],who:[3,9,7],discov:[3,10,7],deploi:[3,5,6,7,10,11],comparison:[3,5],why:[3,5,1],serol:6,urg:1,gather:[10,5,6],request:6,pipe:11,snapshot:6,fact:[3,6,5,4,10,11],text:3,verbos:[4,6],bring:[5,7],playbook:[0,1,2,3,4,5,6,7,8,9,10,11],trivial:[0,9,6,3],anywai:8,varnam:7,redirect:11,locat:[10,6,7],tire:5,should:[0,1,2,3,4,5,6,9],ansible_swapfree_mb:6,won:[10,7,11],suppos:[4,7],"5px":[],local:[3,10,5,6],contribut:[0,11,3],pull:[9,3,5,10],familiar:9,autom:[5,1,11],increas:10,ansible_ssh_port:8,enabl:6,organ:[3,6,1],sha:6,stuff:11,integr:[3,9,6],contain:[3,1,6,5,4,7,10],view:3,legaci:6,nodeinfo:6,skynet:6,statu:[4,10,6,11],extend:[3,5,10,1,7],pattern:[0,1,3,7,8,9,10,11],written:[0,3,4,7,9,10,11],progress:[],email:[3,1],ansible_ssh_host_key_dsa_publ:6,job:[11,2],entir:[1,5,4,7,8,10],webapp:[5,11],"2pm":3,addit:[3,6,4,7,9,10],revers:[3,6],southeast:8,admin:[3,9],goal:[7,11],equal:[5,4,11],ohai_foo:11,etc:[0,3,5,6,7,8,9,10,11],instanc:[10,7],comment:[4,6,1],english:6,guidelin:4,chmod:[4,9,6,7],structur:[],distil:5,rpm:[0,4,3],quit:[4,1],pin:6,platform:[10,5,6],decent:[],compos:7,compon:3,json:[3,2,6,5,4,9,10,11],besid:4,treat:[5,4,1],ungroup:8,immedi:[10,6],"2677m":6,yournam:[7,11],capistrano:[3,5],vmware:6,togeth:1,ador:3,atlanta:[8,9,11],present:[3,10,6],authorized_kei:0,multi:[3,5,7],plain:3,align:[],ansible_virtualization_typ:6,defin:[3,6,7,8,9,10],layer:[9,5],almost:[5,6],demo:11,site:[5,1],lightweight:9,revis:0,michaeldehaan:[],surprisingli:7,halt:1,welcom:[3,9],cross:5,member:[6,2],handl:[4,10,6],probabl:[0,5,4,1,7],ansibl:[0,1,2,3,4,5,6,7,8,9,10,11],difficult:5,http:[3,9,6],hostnam:[8,10,9,6,7],denot:[8,6],effect:[],libvirt:6,php:11,distutil:0,audit:[3,10,1],off:[3,5,10,1],well:[0,1,3,6,5,4,7,9,10,11],exampl:[0,1,2,3,4,5,6,7,8,9,10,11],command:[0,3,6,5,4,7,8,9,10,11],filesystem:[10,6],undefin:6,usual:11,lest:3,tunabl:1,paus:6,less:[0,5,3],additon:0,heavili:5,skill:2,simultan:11,web:[9,3,5,11],add:[0,6,5,4,9,10,11],host4:9,host3:[8,9],host2:[8,9],host1:[8,9],smart:11,knob:1,rememb:11,xmlrpc:9,dest:[10,9,6,7,11],piec:9,know:[2,6,5,4,8,9],nor:6,password:[0,5,6,7,10,11],recurs:[6,11],python3:0,python2:0,loss:5,motorola:3,like:[0,1,2,3,4,5,6,7,8,9,10,11],success:[4,6],necessari:[6,11],lose:11,async:[5,10],architectur:[3,5,10],page:[0,5,11,2,3],ansible_hostnam:[10,6,11],shed:5,drop:4,captur:4,linux:[0,5,6,3],"export":0,home:6,transport:[3,5],tmp:[9,6,11],lead:5,avoid:[0,6,11,3],thank:5,overlap:3,leav:[10,4,1],encourag:[5,1],slight:9,importerror:4,usag:[1,6,5,4,10,11],symlink:[0,6],vhost:7,host:[0,1,3,6,5,4,7,8,9,10,11],although:4,simpler:[5,11],sbin:[10,6,7,11],actual:[3,6,5,4,7,10],disabl:7,ntp_server:[8,11],own:[3,1,6,5,4,7,9,10],automat:[3,4,9,6,11],pitfal:[3,4],hang:7,merg:[5,4],transfer:[3,4,11],appl:2,replac:[],hassl:3,individu:[8,1],simplejson:[0,4,6],subscrib:3,continu:4,eas:5,bug:[0,3],succe:4,made:[3,6,5,4,7,10],whether:[9,4,5,6],arg2:6,asynchron:[3,10,7],record:[8,2],below:[0,9,6,7],limit:[3,10,11,8],otherwis:[4,6],problem:[3,5,2],epel:[0,3],evalu:[10,11],is_favcolor_blu:10,filenam:10,implement:[9,5,4,7],ini:8,inc:6,boot:6,detail:[3,9,11],virtual:[6,7],other:[0,1,2,3,4,5,6,7,9,10,11],futur:[3,10,4],branch:[0,6,8],varieti:[5,4],repeat:[10,1],"class":[3,9,7],debian:[0,10,6,3],stai:[0,10],sphinx:[],scientif:0,reliabl:5,rule:[3,10,1,11],portion:[8,6],emerg:3,name_of_host:[]},objtypes:{},titles:["Getting Started","Best Practices","YAML Syntax","The Future Is Now","Module Development","FAQ","Ansible Modules","Playbooks","Inventory & Patterns","API & Integrations","Advanced Playbooks","Command Line"],objnames:{},filenames:["gettingstarted","bestpractices","YAMLSyntax","index","moduledev","faq","modules","playbooks","patterns","api","playbooks2","examples"]})
\ No newline at end of file
+Search.setIndex({objects:{},terms:{facter_operatingsystem:10,kickstart:10,comprimis:3,poorli:3,four:8,prefix:[8,10,6,7,11],sleep:10,consider:9,whose:10,ebuild:0,aur:0,under:10,spec:7,everi:[0,1,2,7,10,11],risk:10,ansible_virtualization_rol:6,redact:6,upstream:0,affect:[3,4,6],macaddress:6,ansible_librari:[],shlex:4,vars_prompt:[10,1],saltstack:[],x86_64:[9,6],awwxvv:6,seper:[3,10,5,6,1],direct:[5,7],chef:[3,5],second:[10,11],even:[5,7,8,9,10,11],thunder:5,scp:11,"new":[10,5,6],net:[0,2,6,5,4,8,9,11],ever:[3,4],told:7,manipul:[6,11],abov:[10,9,4,7,11],eckersberg:[5,2],hera:8,never:[9,5,4],here:[0,1,3,4,7,8,9,10,11],herd:5,path:[4,6,7,11],datetim:4,permit:[],aka:10,somethingels:10,brought:[],unix:[3,5],cobblerd:9,total:7,unit:4,highli:4,describ:[1,7],would:[0,1,6,5,4,7,9,10,11],h3d850bdf:[],ansible_memtotal_mb:6,noarch:0,dehaan:3,overhead:3,typo:4,recommend:[4,1],type:[3,6,5,4,9,10],tell:[0,8,6,11,3],notif:5,notic:5,warn:4,relai:7,hold:10,must:[4,10,9,6,7],join:[],restor:6,setup:[0,1,3,6,4,9,10,11],work:[0,1,3,5,6,7,8,9,10,11],erb:5,virttyp:6,ansible_ssh_host_key_rsa_publ:6,root:[0,1,3,5,7,10,11],overrid:9,os_default:10,give:2,rpath:3,indic:[6,7],somefil:7,want:[0,1,2,6,5,4,7,9,10,11],end:[3,5,6,7],hoc:[3,5,6,7,11],quot:[10,11],how:[3,1,2,6,5,4,7,8,9,10,11],hop:5,yum:[0,1,3,6,4,7,10,11],perspect:9,updat:[3,10,6,11],recogn:[7,11],passwordless:11,after:[1,6,5,4,7,8,11],lab:[3,5],befor:[3,6,5,4,7,10,11],ohai_:[6,7],arch:[0,3],parallel:[3,5,10,7,11],ansible_product_seri:6,bootstrap:[0,5,6,3],credenti:11,greek:8,unpaus:6,maintain:[0,3],environ:[3,6],exclus:10,idontknow:[],order:[3,5,1,7],oper:[3,10,6,7,11],over:[3,5,8,9,10,11],fall:10,orang:2,becaus:[1,2,5,4,9,10,11],rpmbuild:0,ansible_interfac:6,zeu:8,vari:10,myfil:6,streamlin:10,cli:[9,11],img:3,fix:0,better:[6,11],offic:3,easier:[3,1,2,5,4,11],them:[0,1,2,3,4,5,6,7,8,10,11],thei:[3,6,5,4,7,8,9,10,11],etc_acme_conf_acm:1,safe:[0,7],"break":7,glorifi:3,jinja2:[0,5,6,7,10,11],mgmt:9,httpd_sys_content_t:6,choic:3,vidal:5,bonu:9,timeout:10,each:[3,1,2,6,5,4,7,9,10],debug:2,mean:[3,2,6,5,4,7,10],exactli:6,playbooks2:[5,1],logo:3,contend:5,network:[3,5,10],content:[3,4,10,6,7],adapt:9,got:5,forth:7,site_fact:4,ntp:[8,6,11],nightmar:3,free:[5,10],standard:[8,4],dotnet:2,fixm:[],reconfigur:[5,1],openssh:[3,5],traceback:4,ansible_form_factor:6,isn:[3,5,4],rang:[3,6],render:6,wast:3,restrict:4,hook:6,unlik:[5,7],alreadi:[0,3,5,4,7,9],van_halen_port:7,massiv:3,primari:[9,6],rewritten:[],top:[5,4,1,7],sometim:[10,6],master:[9,6],too:[3,2,5,4,8,9,11],similarli:[3,9,10],john:[5,2],iptabl:[],ansible_memfree_mb:6,tool:[9,3,5,10,11],took:5,"80ghz":6,somewhat:9,technic:[9,6],freemem:6,silli:[],target:[3,8,1,7],keyword:[5,10],provid:[3,1,2,6,5,4,7,9,10,11],tree:[4,9,6],project:[0,1,2,3,5,7,10],ansible_distribution_releas:6,minut:[5,11],uses_cv:2,recheck:4,provis:5,fashion:5,runner:9,ram:5,mind:[3,5,4],raw:[3,6],aforement:8,seem:[5,10,7],seek:6,contact:[0,9,6],blue:10,though:[3,1,6,5,4,9],limitless:10,deleg:5,regular:7,bsd:[0,5],boxsubscrib:3,simplic:3,don:[0,1,3,6,5,4,7,8,10,11],doc:3,doe:[3,6,5,4,8,9,10,11],declar:7,wildcard:8,came:9,cobbler_external_inventori:9,syntax:[3,1,2,5,7,10,11],pkg:[10,6,7,11],radic:3,identifi:5,pki:[3,5],absolut:[6,11],northeast:8,acquir:3,explain:[9,4],configur:[0,1,2,3,5,6,7,8,9,10,11],apach:[5,10,7,11],ldap:9,stop:[0,1,2,6,5,4,7,8,9,10,11],saturn:8,bar:[8,9,6,7],excel:[3,5,10],"public":10,reload:6,bad:4,respond:7,daemonless:3,resist:1,result:[3,6,5,4,9,10],fail:[9,3,5,4,7],themselv:[],hammer:8,best:[3,1,6,5,4,7,10],subject:[5,10],heterogen:1,databas:[3,10,9,6,7],discoveri:[10,6],figur:5,simplest:4,awai:[5,10],irc:[0,2,6,5,4,8,9,11],approach:[3,5,10],attribut:6,manpag:6,extens:[3,5],add:[0,6,5,4,9,10,11],recent:5,easi:[0,1,3,5,6,8,10,11],howev:[8,5,4,11],against:[3,5,10,7,8],logic:3,somelist:10,com:[0,3,6,4,8,9],compromis:5,assur:[10,7],height:3,written:[0,3,4,7,9,10,11],guid:[],assum:[3,9],speak:6,multiplay:3,ansible_library_path:4,three:[8,6],been:[9,3,5,11],much:[3,2,5,6,7,10,11],interest:[0,9],basic:[0,1,2,3,5,4,7,8,9,10,11],tini:10,quickli:[3,11],life:3,ani:[0,1,3,6,5,4,7,9,10,11],enterprisei:9,child:3,emploi:2,ugli:10,exception:5,servic:[3,1,6,4,7,8,10,11],vars_fil:[10,1,7],aim:5,tabl:[],conf:[1,6,7,9,10,11],module_nam:[8,9],somekei:4,sever:[5,2],inventori:[0,1,3,6,7,8,9,10,11],perform:[3,5,10],make:[0,1,3,6,5,4,7,8,9,10,11],complex:[3,5,10,7],split:4,complet:[5,10,1,2,7],wheel:[10,6],ansible_arch2:[],fragil:3,selevel:6,rail:5,hand:10,rais:[10,4],ownership:11,refin:[],tune:[0,10],speakerdeck:3,kept:[5,7],scenario:[3,9],ansible_:[10,7],hypothet:[],tho:[],client:3,thi:[0,1,2,3,4,5,6,7,8,9,10,11],endif:10,programm:[9,5],everyth:[],left:[],protocol:6,just:[0,1,2,3,5,4,7,8,9,10,11],photo:[],human:[7,2],braces_syntax:[],yet:[0,9,6,11,3],languag:[0,2,3,6,5,4,7,8,9,10],expos:1,spread:3,els:7,ffffff:4,save:[4,10,6,7],hat:[3,5],applic:[9,3,5,10,7],quirk:2,fusion:6,background:[3,11],daemon:[3,5],specif:[1,5,6,7,8,9,11],arbitrari:[10,5,6],manual:[5,7,11],remind:[10,4,1],el6:6,unnecessari:6,groups_logo_sm:3,right:[],deal:4,maxim:5,dead:3,born:5,intern:4,heritag:[],successfulli:3,txt:[6,11],forcibl:[],bottom:7,tracker:[0,3],condit:[3,10,7],foo:[6,7,8,9,10,11],localhost:6,core:[3,4,5,6,11],plu:7,web2:9,web1:9,promot:[],repositori:1,peer:[3,5],"super":3,sshd:3,surround:11,simul:10,commit:1,produc:4,bounc:[6,7],contriv:[],halon_system_timeout:8,wrap:1,eth0:6,git:[0,1,3,6,5,4,10,11],fabric:[3,5],suffici:10,support:[0,3,5,6,7,9,11],happi:3,avail:[0,1,2,6,5,4,7,9,10,11],width:3,reli:[3,5,10],gid:6,wordpress:7,call:[1,2,6,4,7,9],fork:[9,5,10,11],head:[6,11],python26:0,form:[3,2,4,7,8,10],altogeth:3,"true":[2,6,4,7,8,10],freenod:[0,2,3,6,5,4,8,9,11],absent:[6,11],inquir:4,maximum:10,until:[10,4,1],ansible_fqdn:6,rerun:7,featur:[0,1,3,5,7,10],"abstract":5,fedoraproject:[],cobbler:[9,3,5],desir:[3,4,6,1,7],ship:[4,6],check:[10,6,11],pipe:11,encrypt:5,tip:[3,8,10,1,7],role:[3,10,6,1,7],test:[0,3,6,5,4,9],tie:9,unlimit:3,maxrequestsperchild:8,node:[0,3,6,5,4,9,10,11],intend:[4,6],devop:3,intent:[],consid:[4,1,7],faster:[5,10],anywher:[],ignor:4,time:[0,1,2,3,4,5,6,7,8,9,10,11],push:[3,5,10,7],concept:[9,1,11],skip:10,consum:5,invent:[],operatingsystem:10,decid:[5,4,11],middl:[],depend:[4,10,5,6,11],graph:5,readabl:1,decis:10,southwest:8,sourc:[0,1,2,3,4,5,6,7,9,10,11],string:[4,6,8],somelog:6,word:9,brows:4,level:[3,6,7,2],did:[10,9,4],item:[9,10,2],team:5,ansible_product_nam:6,prevent:4,trend:6,anaconda:10,port:[8,5,11],favcolor:[10,9,4,11],ansible_distribution_vers:6,current:[0,10,5,4,11],suspect:[],gener:[0,5,4,9,10,11],address:[3,1,5,6,8,9,10],along:[4,6,7],wait:10,box:[3,6,11],precursor:3,extrem:[0,5,10,3],bob:7,commonli:[11,2],ourselv:7,regardless:[3,5,7,2],extra:[5,10,1],tweak:1,modul:[0,1,3,6,5,4,7,9,10,11],userdel:6,prefer:[8,10,4,11],instal:[0,3,6,5,4,7,10,11],httpd:[8,10,6,7,11],prove:10,is_cento:10,visit:3,perl:11,live:0,handler:[11,6,1,7],criteria:10,msg:[9,4],scope:6,checkout:[0,4,10,6,3],ntpserver:[8,9,6],idempot:[3,6,5,4,7,11],share:[0,10,9,4,3],claus:10,accept:[4,6],easiest:[0,10,3],get_xml:6,ibm:3,module_arg:9,prepar:4,uniqu:3,cat:[],whatev:4,purpos:[8,6,1],claim:1,hostvar:10,facter_hostnam:[7,11],chip:3,agent:[0,5,11],critic:3,occur:[],alwai:[4,5,6,7],multipl:[1,5,6,7,8,9,10,11],ping:[0,9,6,3],uptim:9,write:[3,1,2,6,5,4,7,10,11],purg:6,somevalu:[10,4],parameter:7,map:[],mar:8,max:11,clone:[0,4],usabl:7,membership:[10,11],mai:[0,1,2,6,4,7,9,10,11],underscor:6,data:[3,2,6,5,4,9,10],man:[],poseidon:8,practic:[3,1,2,5,6,7,10],seuser:6,explicit:6,predic:6,inform:[3,5,6,7,9,10,11],"switch":5,mango:2,combin:2,talk:[8,7],nbsp:3,still:[0,5,4,7,8,9,10],mainli:5,facter_:[6,7],jid:11,overlord:[],group:[0,1,2,3,4,5,6,7,8,9,10,11],monitor:9,polici:6,yaml:[3,1,2,5,7,8,10],curli:11,intl:3,mail:[0,1,2,6,5,4,7,8,9,10,11],job_statu:[],main:[10,9,4,1,7],xyz:6,non:[4,6,7,8],env:0,half:5,now:[0,3,6,5,4,7,9,10,11],discuss:5,setyp:6,down:[9,6,7],term:11,name:[3,1,2,6,4,7,8,9,10,11],config:[3,9,7],drop:4,crypto:3,separ:7,arg1:6,laserllama:3,yeah:[],contrib:4,backport:[0,6],facter:[3,5,6,7,10,11],happen:[9,5],likes_emac:2,shown:4,space:[3,6],infrar:[],profil:9,intermix:3,internet:3,correct:[3,5,7,2],ksmeta:9,lag:6,migrat:3,argv:4,args_fil:4,theori:7,org:[0,6,11],care:6,reusabl:4,wai:[0,1,3,6,5,4,7,9,10,11],frequenc:10,synchron:[10,7],thing:[0,1,2,3,5,4,7,8,10,11],place:3,raleigh:[3,11,8],router:6,think:[3,10,5,4,1],frequent:[3,9,10],first:[0,3,5,6,8,10,11],origin:0,directli:[4,9,6,7,11],onc:[1,6,5,4,7,8,10],arrai:10,yourself:7,fast:[3,5],oppos:11,open:[10,5,4,7],somegroup:6,given:[10,5,6,1,11],unlink:6,convent:[3,9,4],gif:3,white:4,especi:[5,10],copi:[3,10,9,6,11],specifi:[0,2,3,6,5,4,7,10,11],retyp:0,netmask:6,github:[0,1,2,3,6,4,7,9,10],mostli:[6,1],than:[0,1,2,3,4,5,6,7,10,11],cmdb:9,wide:5,were:[3,5,10,11],pre:[],sai:[0,3,5,6,7,10,11],nicer:[],argument:[6,4,7,8,9,11],dash:2,loki:8,sat:5,engin:[],squar:[],alias:6,destroi:6,note:[0,6,4,7,9,10,11],forc:[0,6],ideal:[3,5],denomin:1,take:[4,5,6,7,11],noth:[6,7,2],channel:[0,2,6,5,4,8,9,11],begin:[3,11,2],sure:[8,10,7,11],normal:[9,11],track:[0,10,11],beta:[],pair:[4,6,2],adopt:5,meanwhil:5,runtim:10,show:[10,11],cheat:5,aggregr:4,geographi:1,permiss:[0,11],hack:[0,4,3],rotat:7,xml:2,onli:[0,3,6,5,4,7,9,10,11],explicitli:[6,7],transact:10,enough:[8,5,11],somevar:10,analyz:10,nearli:[6,7,2],variou:[10,5,6,7],get:[0,2,3,6,5,4,7,10,11],soon:[],repo:[4,6,11],ssl:[3,5],cannot:[],ssh:[0,3,5,6,8,9,10,11],requir:[0,1,3,6,5,4,9,10,11],some_file_path_foo:1,where:[0,1,3,6,5,4,9,10],wiki:[],hierachi:[],ansible_product_vers:6,ansible_distribut:[10,6],detect:6,ansible_ssh_host_key_dsa_publ:6,innov:3,review:[3,1,5,6,7,10],behind:[5,6],ansible_system_vendor:6,between:[3,5,10,1,7],"import":[3,10,9,4,11],across:5,cycl:[0,3],come:[3,10,4,1],timmi:7,contract:9,tutori:[3,4],mani:[6,4,7,9,10,11],setenforc:7,among:5,color:[10,4],overview:2,inspir:[3,5],period:10,colon:[8,7],inventory_hostnam:10,webapp:[5,11],poll:[3,10,11],other_vari:10,coupl:5,rebuild:[],rubi:[2,6,5,4,10,11],those:[6,7,8,9,10,11],"case":[3,6,5,4,10,11],md5sum:6,straighten:5,trick:[],exist:[3,5,6,7,9,10,11],newhost:6,stdout:9,worri:[5,10],destin:6,myapp:[10,11],chkconfig:6,http_port:[8,7],develop:[0,1,2,3,4,5,6,7,10],ansible_architectur:6,author:[3,1],same:[0,1,2,7,8,9,10,11],html:5,pad:[],pai:11,document:[1,2,5,4,7,9,10,11],week:3,webserv:[3,1,6,7,8,9,10,11],nest:[4,10,6],driven:[3,9],capabl:1,fruit:2,interventori:[],improv:4,extern:[3,9,10,1],appropri:[9,10,5,6,11],without:[5,4],model:[3,5],dereferenc:[],execut:[3,1,6,5,4,7,9,10,11],when:[0,1,3,6,5,4,7,9,10,11],rest:[],kill:7,versu:[0,5,1,3],miscellan:[3,1],except:4,littl:[9,3,5],otherus:11,blob:9,notori:5,vulner:5,real:[0,10,7],around:[0,5],ohai:[3,5,6,7,10,11],read:[0,2,3,4,9,11],dark:9,world:[0,5,10,7],intel:6,whitespac:1,integ:6,server:[3,5,6,7,10,11],either:[9,8,10,5,6],output:[9,4,5,6,7],manag:[0,1,2,3,4,5,6,7,8,9,10,11],sneaker:[],titan:8,ansible_processor:6,noon:3,definit:10,legal:[4,1],moon:8,exit:[9,4],complic:[3,5],refer:[10,9,6,7,11],ansible_swaptotal_mb:6,power:[0,1,3,5,7,9,10],broken:1,found:[10,9,4],"throw":5,src:[3,6,7,9,10,11],stone:4,central:[3,5],acm:[1,11],wolf:9,industri:[3,5],mytempl:6,effici:[5,10],terminolog:9,somescript:6,multinod:5,your:[0,1,3,6,5,4,7,8,9,10,11],stare:4,log:[4,10,5,6,7],area:[],aren:[8,5],start:[0,1,2,3,5,6,7,8,9,11],interfac:5,low:6,lot:[3,10,4,1,11],ipv6:6,congratul:0,strawberri:2,dirti:6,possibl:[1,4,7,8,9,10,11],"default":[0,3,5,6,8,10,11],ansible_fact:4,stacktrac:4,connect:[5,10],tasti:2,uid:6,creat:[0,3,5,6,7,9,11],certain:[3,10,5,6,7],strongli:[3,5,1],deferenc:[],file:[0,1,2,3,6,4,7,8,9,10,11],again:[5,4,7],googl:[0,1,2,3,4,5,6,7,8,9,10,11],compel:[],event:[4,5,6,7],valid:4,you:[0,1,2,3,4,5,6,7,8,9,10,11],external_var:10,poor:4,sequenc:3,symbol:6,"60k":[3,5],directori:[3,1,2,6,4,7,10,11],invest:5,descript:[6,1,7],chown:6,potenti:[3,10],appl:2,cpu:6,all:[0,1,2,3,4,5,6,7,8,9,10,11],forget:[10,11],selinux:[6,7],lack:3,month:0,abil:5,follow:[0,5,6,8,9,10,11],alt:3,children:8,nors:8,program:[3,2,6,5,4,7,11],mcollect:[],arbitari:2,introduc:[],liter:6,"1pm":3,fals:[10,2],faq:[3,5],failur:[9,5,4],veri:[3,1,5,6,7,9,10,11],condition:7,list:[0,1,2,3,4,5,6,7,8,9,10,11],sane:5,stderr:4,small:[3,5,10,2],testuser2:10,testuser1:10,enterpris:0,zero:4,design:[3,5,11,8],pass:[0,3,6,4,7,9,10,11],further:[3,5,2],what:[0,1,2,3,4,5,6,7,9,10],sub:3,section:[0,1,3,5,6,7,8,10,11],abl:1,delet:[6,11],abbrevi:2,version:[0,1,3,6,7,10,11],method:9,hasn:5,full:[3,10,7],hash:[10,9,4,2],shouldn:[5,10],first_available_fil:10,modifi:4,valu:[3,2,6,4,7,9,10,11],ahead:7,likin:5,memcach:7,prior:[10,6],amount:9,pick:[5,11],action:[3,10,9,6,7],via:[0,9,10,3],shorthand:[3,10,4],factnam:10,managememnt:3,href:[],select:[3,1,6,4,7,8,10],distinct:3,two:[3,6,7,8,9,10],rhel:[0,3],demo:11,taken:[5,7],kick:[10,11],more:[0,1,3,5,6,7,8,10,11],flat:7,door:5,flag:[],particular:[3,6,7,8,9,10,11],known:6,compani:5,cach:6,none:[9,6],pkgbuild:0,hous:3,dev:5,remain:3,learn:[0,1,2,3,5,4,7,8,10],prompt:[3,10,7,11],yamllint:2,moduledev:[],templat:[3,1,6,5,4,7,9,10,11],minimum:[10,4,7],explor:[0,9],cours:[5,10,1],newlin:[],secur:[3,10,5,6],rather:[10,5,6],anoth:[1,2,5,6,7,10,11],simpl:[3,1,2,5,7,9,10,11],distro:9,resourc:[3,10,5,6,7],referenc:[8,7],variant:0,ff0000:4,neccesssari:3,args_data:4,associ:2,"short":[8,0,5,10,3],help:[0,1,2,3,4,5,6,7,8,9,10,11],xmpp:5,mission:3,uvh:0,through:[0,6,11,3],hierarchi:5,fff:[],suffer:5,paramet:[4,10,6,7],style:4,pend:[],rapidli:9,might:[10,9,4,7],wouldn:[9,5],good:[3,5,4,7,9,10],"return":[9,3,4,5,6],food:2,framework:[9,3,5],botnet:[3,5],odin:8,neccessari:10,instruct:[0,5,3],mysteri:10,easili:[0,3,5,9,10,11],achiev:4,fulli:[0,6],only_if:10,ansible_kernel:6,subsystem:[3,5,6],harm:[],mental:5,hard:5,idea:[0,1,2,3,4,5,6,7,8,9,10,11],crontab:10,realli:[3,2,6,5,4,7],expect:[9,10,7],variablenam:6,beyond:10,orient:[3,7],hostnam:[8,10,9,6,7],safeti:[],bubbl:[10,6,7],print:[9,4],qualifi:6,proxi:8,advanc:[9,3,5,10,7],pub:11,reason:[9,10,5,4,7],base:[3,5,10,1],believ:5,ask:[0,7,11],bash:[0,5,4,11],basi:7,pyyaml:0,sytem:5,launch:[10,7],omit:1,ansible_system:6,assign:[8,9,10,1],feed:[],major:9,notifi:[11,5,4,1,7],obviou:3,feel:[10,2],exchang:10,number:[3,5,6,8],placehold:[10,7],done:[0,1,5,6,8,10],least:1,stabl:0,differ:[0,1,3,5,6,7,9,10,11],list_vm:6,guest:6,script:[3,1,6,5,4,9,10,11],interact:11,construct:[9,5,10,1,7],camelot:10,make_databas:6,statement:[4,7],banana:[],store:[9,6],option:[0,1,6,5,4,7,9,11],part:[3,10,5,6],pars:[5,4],reinstal:3,kind:[5,4],grep:[],remot:[0,3,6,7,10,11],remov:[10,6,11],reus:[3,10,7],architect:3,str:4,jvmdhw:6,toward:10,cleaner:10,comput:5,well:[0,1,3,6,5,4,7,9,10,11],packag:[0,1,3,6,5,4,10,11],imagin:[],built:[9,0,5,10,11],equival:10,self:[5,4],also:[0,1,2,3,4,5,6,7,8,9,10,11],append:6,brace:11,distribut:[0,5,1,3],passwd:6,choos:[6,7],reach:[3,1],most:[3,1,2,5,6,7,11],plai:[3,10,6,7],plan:5,alpha:6,bug:[0,3],filesystem:[10,6],cover:[9,3,5,11],clojur:4,clean:5,usual:11,awesom:[3,6,7],ansible_processor_count:6,alphanumer:6,devolv:3,mpd_ring:[],particularli:[3,10,7],fine:[4,1],find:[9,4,7],impact:5,firewal:3,pretti:[9,5,10],solut:5,olympu:8,yml:[10,1,7],remedi:[3,10],long_running_oper:11,financ:3,nativ:10,restart:[1,5,6,7,8,11],mdehaan:[6,11],dollar_sign_syntax:[],common:[3,10,4,1,2],wrote:4,set:[0,1,3,6,5,4,7,8,10,11],dump:4,see:[0,1,2,3,4,5,6,7,8,9,10,11],sec:10,arg:4,disadvantag:3,setsebool:7,expert:5,someth:[1,5,4,7,9,10],restructur:7,experi:5,altern:[10,11],solo:[],numer:[],aserv:0,solv:3,foo_port:[],popul:9,both:[3,10,5,4,11],last:[0,3],delimit:6,thor:8,context:6,whole:5,load:[],simpli:[6,1,7],point:[9,10,1],etc_other_conf_oth:1,header:8,shutdown:[10,6],suppli:6,asdf:8,backend:3,devic:6,due:[0,5,4,3],empti:9,ran:3,host4:9,escape_pod:8,strategi:5,wish:[0,1,2,6,7,9,10],fire:[3,5,10],imag:3,convert:4,gap:5,understand:4,func:[3,5],educ:4,look:[3,6,4,7,8,10,11],straight:11,batch:[3,5],"while":[3,5,10,1,7],unifi:3,match:[4,7],behavior:6,error:[4,10,5,6],loop:[3,10,7],pack:9,pragmat:3,motd:[9,7,11],max_client:7,readm:4,jpg:[],itself:[9,0,5],cento:[0,10,6,3],fedora:0,minim:[0,4],shorter:4,higher:[3,10],optim:1,painless:3,temporari:[],user:[3,1,5,6,7,9,10,11],yesterdai:3,createhom:6,lower:[5,4],task:[3,1,5,7,10,11],older:6,entri:3,spent:5,expens:9,spend:5,explan:4,amp:[8,9],love:[],centos6:9,async_wrapp:4,appli:[8,10,6,7],input:[3,10,4],build:[9,0,5,4],bin:[0,6,4,7,8,9,10,11],march:4,format:[3,2,5,6,7,8,11],judgement:6,nginx:6,game:3,quest:10,bit:[10,5,6],name_of_fact:[],knock:5,capital_of_assyria:[],signal:5,manifest:5,api:[9,3,4,5,6],popular:3,often:[9,3,5,10,1],simplifi:11,creation:11,some:[0,1,3,6,5,4,7,8,9,10,11],back:[0,5,10,7,11],scale:[3,5,10],per:9,larg:5,machin:[3,1,6,5,4,7,11],previou:10,run:[0,2,3,6,5,4,7,8,9,10,11],lose:11,step:[3,10,5,6,7],squeez:6,meantim:5,impor:[],othervar:[],ansible_eth0:[10,6],block:10,primarili:6,pythonpath:[],within:[8,10,5,6],ensur:[3,5,6,7,10,11],chang:[0,1,3,6,4,7,10,11],bserver:0,ansible_python_vers:6,question:[0,1,2,3,4,5,6,7,8,9,10,11],"long":[0,3,5,6,9,10,11],custom:[3,5],includ:[3,1,6,5,4,7,9,10,11],suit:[5,7],datastructur:9,foosbal:6,lint:2,link:[4,6],newer:0,line:[0,2,3,6,5,4,7,8,9,10,11],info:[3,9,6,11],caller:6,planet:3,highlight:[],similar:[9,6,11],curv:[3,5],constant:1,parser:4,doesn:[3,9,10,11,2],repres:[9,2],chat:[0,2,3,6,5,4,8,9,11],coder:5,crypt:[6,11],chgrp:6,bracket:8,transport:[3,5],peopl:[3,10,8],nice:[3,7],asciidoc:[],meaning:6,far:[3,11,2],hello:0,jupit:8,pluggabl:[3,5],code:[0,1,3,6,5,4,9,10,11],async_statu:11,privat:10,sensit:[3,10],elsewher:11,friendli:3,send:10,autostart:6,sens:6,blindingli:3,sent:4,logtre:6,signfic:4,implicitli:5,relev:[10,5,4],recip:0,magic:[3,10,5,4,7],id_rsa:[0,11],michael:3,fewer:10,"try":[9,3,10,5,4],pleas:[9,0,5],malici:5,natur:3,cron:[5,10],download:0,folk:4,turn:[3,10,5,4],compar:[3,5],access:[3,10,6,11],can:[0,1,2,3,4,5,6,7,8,9,10,11],chose:[],let:[0,2,3,6,4,7,9,11],ubuntu:6,sinc:[3,9,6,1,11],great:[3,10,5,4],didn:[5,11],hypervisor:6,technolog:3,later:[0,3,6,4,7,8,10,11],typic:[5,11],control:[3,1,6,5,4,7,9,10,11],win:[],app:5,apt:[3,10,6,1,11],"boolean":2,cloud:5,from:[0,1,2,3,4,5,6,7,9,10,11],usa:8,commun:[9,5],doubl:11,upgrad:[6,11],next:[0,7],few:[],usr:[0,6,4,7,8,9,11],sort:5,dbserver:[8,1],sbin:[10,6,7,11],trail:1,train:5,starter:[4,7],account:[0,6,7,11],retriev:10,tunnel:3,alia:[8,6],alic:7,fetch:[3,10,6],proof:4,employe:[5,2],tar:[0,6],process:[3,5,6,7,11],lock:[5,10],sudo:[11,0,5,7,3],high:[4,11],knows_oop:2,tag:[0,6,3],tab:7,tarbal:6,onlin:2,surfac:[3,5],lame:2,lepton:4,subdirectori:6,srv:[10,9,6,7,11],panic:10,stock:[],express:[3,2,4,7,8,9,10],gentoo:[0,3],attent:11,tier:3,ansible_host:0,orchestr:[3,5,7],correspond:6,element:[9,10],issu:[0,5,6,3],allow:[3,1,6,5,4,9,10,11],move:[6,7],elit:2,comma:6,release_vers:[],bunch:8,taboot:5,infrastructur:[0,1,3,5,7,8],anyon:5,ansible_product_uuid:6,dag:5,greater:8,python:[0,2,3,6,5,4,9,10,11],auto:[9,4],dai:5,devel:0,mention:7,rubygem:11,instead:[10,5,6,1,11],strive:4,multiprocess:5,anyth:[9,4,5,6],edit:[0,9,6],mode:[3,10,5,6,11],grok:3,bump:0,our:[3,11,2],patch:5,pitfal:[3,4],special:10,out:[3,1,6,5,4,7,9,10,11],variabl:[3,1,6,5,4,7,8,9,10,11],reboot:[6,7,11],rel:6,"_default":6,ref:[5,1],dive:7,red:[9,3,5,4,11],clarifi:[],insid:[8,10],unpars:4,ansible_machin:6,dictionari:[10,9,4,2],releas:[0,1,3,5,6,7,10],indent:2,could:[9,10,5,4,7],put:[0,1,6,8,10,11],fqdn:[],keep:[0,10,9,4,1],adrian:5,retain:5,stuck:7,localdomain:6,softwar:[3,1,5,6,9,10,11],qualiti:4,scene:6,echo:[0,9,10,11],date:[0,4],puppet:[9,3,5],submit:[3,5],owner:[6,11],prioriti:6,ansible_lo:6,perfectli:0,mkdir:11,system:[0,1,3,6,5,4,7,8,9,10,11],messag:[9,4,5,6],attack:[3,5],pattern_goes_her:8,termin:11,"final":6,ipv4:[10,6],shell:[3,1,6,4,7,9,11],hassl:3,rst:[],nobodi:4,richer:5,intervert:10,charact:[6,2],favorit:[3,10],sysadmin:5,ansible_processor_cor:6,have:[0,1,2,3,4,5,6,7,8,9,10,11],close:[3,4],need:[0,1,2,3,4,5,6,7,8,9,10,11],cfengin:5,border:[],paramiko:0,mix:[8,10,6,7],baisc:[],which:[0,1,2,3,5,6,7,8,9,10],datacent:1,with_item:10,divers:3,singl:[1,5,7,9,10,11],unless:[10,5,6,7],deploy:[11,0,5,7,3],who:[3,9,7],discov:[3,10,7],deploi:[3,5,6,7,10,11],comparison:[3,5],why:[3,5,1],serol:6,urg:1,gather:[10,5,6],request:6,self_destruct_countdown:8,snapshot:6,fact:[3,6,5,4,10,11],text:3,verbos:[4,6],bring:[5,7],playbook:[0,1,2,3,4,5,6,7,8,9,10,11],trivial:[0,9,6,3],anywai:8,varnam:7,redirect:11,locat:[10,6,7],tire:5,should:[0,1,2,3,4,5,6,9],ansible_swapfree_mb:6,won:[10,7,11],suppos:[4,7],"5px":[],local:[3,10,5,6],contribut:[0,11,3],pull:[9,3,5,10],familiar:9,autom:[5,1,11],increas:10,ansible_ssh_port:8,enabl:6,organ:[3,6,1],sha:6,stuff:11,integr:[3,9,6],contain:[3,1,6,5,4,7,10],view:3,legaci:6,nodeinfo:6,skynet:6,statu:[4,10,6,11],extend:[3,5,10,1,7],pattern:[0,1,3,7,8,9,10,11],state:[3,6,5,4,7,8,10,11],progress:[],email:[3,1],kei:[0,2,3,6,5,4,7,9,10,11],job:[11,2],entir:[1,5,4,7,8,10],homebrew:0,"2pm":3,addit:[3,6,4,7,9,10],southeast:8,admin:[3,9],goal:[7,11],equal:[5,4,11],ohai_foo:11,etc:[0,3,5,6,7,8,9,10,11],instanc:[10,7],comment:[4,6,1],english:6,guidelin:4,chmod:[4,9,6,7],distil:5,rpm:[0,4,3],quit:[4,1],evalu:[10,11],platform:[10,5,6],decent:[],compos:7,compon:3,json:[3,2,6,5,4,9,10,11],besid:4,treat:[5,4,1],ungroup:8,immedi:[10,6],"2677m":6,yournam:[7,11],capistrano:[3,5],vmware:6,togeth:1,ador:3,atlanta:[8,9,11],present:[3,10,6],authorized_kei:0,multi:[3,5,7],plain:3,align:[],ansible_virtualization_typ:6,defin:[3,6,7,8,9,10],layer:[9,5],almost:[5,6],virt:[3,6],site:[5,1],lightweight:9,revis:0,michaeldehaan:[],surprisingli:7,halt:1,welcom:[3,9],cross:5,member:[6,2],handl:[4,10,6],inc:6,ansibl:[0,1,2,3,4,5,6,7,8,9,10,11],difficult:5,http:[3,9,6],structur:10,denot:[8,6],effect:[],libvirt:6,php:11,distutil:0,audit:[3,10,1],off:[3,5,10,1],seth:5,exampl:[0,1,2,3,4,5,6,7,8,9,10,11],command:[0,3,6,5,4,7,8,9,10,11],interpol:10,undefin:6,latest:[0,6,7,11],lest:3,tunabl:1,paus:6,less:[0,5,3],additon:0,heavili:5,skill:2,simultan:11,web:[9,3,5,11],host5:9,cleanup:10,host3:[8,9],host2:[8,9],host1:[8,9],smart:11,knob:1,branch:[0,6,8],xmlrpc:9,dest:[10,9,6,7,11],piec:9,know:[2,6,5,4,8,9],nor:6,password:[0,5,6,7,10,11],recurs:[6,11],python3:0,python2:0,loss:5,motorola:3,like:[0,1,2,3,4,5,6,7,8,9,10,11],success:[4,6],necessari:[6,11],cellspac:[],async:[5,10],architectur:[3,5,10],page:[0,5,11,2,3],ansible_hostnam:[10,6,11],shed:5,revers:[3,6],captur:4,linux:[0,5,6,3],"export":0,home:6,librari:[4,6,2],tmp:[9,6,11],lead:5,avoid:[0,6,11,3],thank:5,overlap:3,leav:[10,4,1],encourag:[5,1],slight:9,importerror:4,usag:[1,6,5,4,10,11],symlink:[0,6],vhost:7,host:[0,1,3,6,5,4,7,8,9,10,11],although:4,simpler:[5,11],about:[0,1,2,3,4,5,6,7,10,11],actual:[3,6,5,4,7,10],disabl:7,ntp_server:[8,11],own:[3,1,6,5,4,7,9,10],automat:[3,4,9,6,11],some_serv:8,hang:7,merg:[5,4],transfer:[3,4,11],trigger:[5,6,7],replac:[],"var":[3,1,6,7,8,10],individu:[8,1],simplejson:[0,4,6],subscrib:3,continu:4,eas:5,eat:11,succe:4,made:[3,6,5,4,7,10],whether:[9,4,5,6],arg2:6,asynchron:[3,10,7],record:[8,2],below:[0,9,6,7],limit:[3,10,11,8],otherwis:[4,6],problem:[3,5,2],epel:[0,3],pin:6,is_favcolor_blu:10,filenam:10,implement:[9,5,4,7],ini:8,probabl:[0,5,4,1,7],boot:6,detail:[3,9,11],virtual:[6,7],other:[0,1,2,3,4,5,6,7,9,10,11],futur:[3,10,4],rememb:11,varieti:[5,4],repeat:[10,1],"class":[3,9,7],debian:[0,10,6,3],stai:[0,10],sphinx:[],scientif:0,reliabl:5,rule:[3,10,1,11],portion:[8,6],emerg:3,name_of_host:[]},objtypes:{},titles:["Getting Started","Best Practices","YAML Syntax","The Future Is Now","Module Development","FAQ","Ansible Modules","Playbooks","Inventory & Patterns","API & Integrations","Advanced Playbooks","Command Line"],objnames:{},filenames:["gettingstarted","bestpractices","YAMLSyntax","index","moduledev","faq","modules","playbooks","patterns","api","playbooks2","examples"]})
\ No newline at end of file