Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
e0245701
Commit
e0245701
authored
Aug 17, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rebuild
parent
3b562aa3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
26 additions
and
17 deletions
+26
-17
YAMLSyntax.html
+1
-1
api.html
+1
-1
bestpractices.html
+1
-1
examples.html
+1
-1
faq.html
+1
-1
genindex.html
+1
-1
gettingstarted.html
+1
-1
index.html
+1
-1
moduledev.html
+1
-1
modules.html
+12
-3
patterns.html
+1
-1
playbooks.html
+1
-1
playbooks2.html
+1
-1
search.html
+1
-1
searchindex.js
+0
-0
who_uses_ansible.html
+1
-1
No files found.
YAMLSyntax.html
View file @
e0245701
...
...
@@ -289,7 +289,7 @@ languages:
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
api.html
View file @
e0245701
...
...
@@ -469,7 +469,7 @@ e.g.
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
bestpractices.html
View file @
e0245701
...
...
@@ -340,7 +340,7 @@ different variables to different geographies.</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
examples.html
View file @
e0245701
...
...
@@ -442,7 +442,7 @@ what their names or IP addresses are).</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
faq.html
View file @
e0245701
...
...
@@ -409,7 +409,7 @@ tasks – whether for a QA sytem, build system, or anything you can think of
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
genindex.html
View file @
e0245701
...
...
@@ -204,7 +204,7 @@ s.parentNode.insertBefore(ga, s);
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
gettingstarted.html
View file @
e0245701
...
...
@@ -410,7 +410,7 @@ explore, but you already have a fully working infrastructure!</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
index.html
View file @
e0245701
...
...
@@ -417,7 +417,7 @@ Puppet Labs, and is now with <a class="reference external" href="http://rpath.co
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
moduledev.html
View file @
e0245701
...
...
@@ -511,7 +511,7 @@ the program. Stop by the mailing list to inquire about requirements.</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
modules.html
View file @
e0245701
...
...
@@ -1307,6 +1307,14 @@ for this module.</p>
idempotent actions that will not run commands unless neccessary.
‘
restarted
’
will always bounce the service,
‘
reloaded
’
will always reload.
</td>
</tr>
<tr><td>
pattern
</td>
<td>
no
</td>
<td>
</td>
<td>
(new in 0.7) if the service does not respond to the status command,
name a substring to look for as would be found in the output of the
‘
ps
’
command as a stand-in for a status result. If the string is found, the
service will be assumed to be running.
</td>
</tr>
<tr><td>
enabled
</td>
<td>
no
</td>
<td>
</td>
...
...
@@ -1314,11 +1322,12 @@ idempotent actions that will not run commands unless neccessary.
</tr>
</tbody>
</table>
<p>
Example action from Ansible
<a
class=
"reference internal"
href=
"playbooks.html"
><em>
Playbooks
</em></a>
:
</p>
<p>
Example action
s
from Ansible
<a
class=
"reference internal"
href=
"playbooks.html"
><em>
Playbooks
</em></a>
:
</p>
<div
class=
"highlight-python"
><pre>
service name=httpd state=started
service name=httpd state=stopped
service name=httpd state=restarted
service name=httpd state=reloaded
</pre>
service name=httpd state=reloaded
service name=foo pattern=/usr/bin/foo state=started
</pre>
</div>
</div>
<div
class=
"section"
id=
"setup"
>
...
...
@@ -1787,7 +1796,7 @@ yum name=httpd state=installed</pre>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
patterns.html
View file @
e0245701
...
...
@@ -392,7 +392,7 @@ Ansible 0.7. Ansible 0.6 includes a <a class="reference external" href="https:/
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
playbooks.html
View file @
e0245701
...
...
@@ -550,7 +550,7 @@ can do this:</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
playbooks2.html
View file @
e0245701
...
...
@@ -655,7 +655,7 @@ instance, you could test for the existance of a particular program.</p>
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
search.html
View file @
e0245701
...
...
@@ -221,7 +221,7 @@ s.parentNode.insertBefore(ga, s);
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
searchindex.js
View file @
e0245701
This diff is collapsed.
Click to expand it.
who_uses_ansible.html
View file @
e0245701
...
...
@@ -269,7 +269,7 @@ s.parentNode.insertBefore(ga, s);
</p>
<p>
©
Copyright 2012 Michael DeHaan.
<br/>
Last updated on Aug 1
6
, 2012.
<br/>
Last updated on Aug 1
7
, 2012.
<br/>
</p>
</div>
</footer>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment