Skip to content

Commit d4f8a82

Browse files
committed
changing resource links into bullets
1 parent e6798a2 commit d4f8a82

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

configuration-management.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ <h3>Ansible Resources</h3>
101101
<p><a href="http://lattejed.com/first-five-and-a-half-minutes-on-a-server-with-ansible">First Five (and a half) Minutes on a Server with Ansible</a> </p>
102102
<p><a href="http://davidwinter.me/articles/2013/11/23/introduction-to-ansible/">(Detailed) Introduction to Ansible</a></p>
103103
<p><a href="http://blog.couchbase.com/create-couchbase-cluster-with-ansible">Create a Couchbase Cluster with Ansible</a></p>
104-
<p><a href="https://groups.google.com/forum/#!msg/Ansible-project/WpRblldA2PQ/lYDpFjBXDlsJ&quot;">Idempotence, convergence, and other silly fancy words we often use</a></p>
104+
<ul>
105+
<li><a href="https://groups.google.com/forum/#!msg/Ansible-project/WpRblldA2PQ/lYDpFjBXDlsJ">Idempotence, convergence, and other silly fancy words we often use</a></li>
106+
</ul>
105107
<br/>
106108
Next read the
107109
<a href="/web-analytics.html">web analytics</a> section.

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-28T09:24:45Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-28T14:27:34Z</updated></feed>

source/content/pages/01-introduction/0101-introduction.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ category: page
33
slug: introduction
44
sort-order: 01
55

6-
# Introduction
76

7+
# Introduction
88
You're knee deep in learning the [Python](http://www.python.org/)
99
programming language. The syntax is starting to make sense. The first
1010
few "AHA!" moments are hitting you as you're building applications with

source/content/pages/21-configuration-management/2101-configuration-management.markdown

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,37 +19,37 @@ management and application deployment tool built in Python.
1919

2020

2121
### Ansible Resources
22-
[Official Ansible documentation](http://docs.ansible.com/index.html)
22+
* [Official Ansible documentation](http://docs.ansible.com/index.html)
2323

24-
[Python for Configuration Management with Ansible slides](http://www.insom.me.uk/post/pycon-talk.html)
24+
* [Python for Configuration Management with Ansible slides](http://www.insom.me.uk/post/pycon-talk.html)
2525
from PyCon UK 2013
2626

27-
[Ansible Weekly Newsletter](http://devopsu.com/newsletters/ansible-weekly-newsletter.html)
27+
* [Ansible Weekly Newsletter](http://devopsu.com/newsletters/ansible-weekly-newsletter.html)
2828

29-
[First Steps with Ansible](http://labs.qandidate.com/blog/2013/11/15/first-steps-with-ansible/)
29+
* [First Steps with Ansible](http://labs.qandidate.com/blog/2013/11/15/first-steps-with-ansible/)
3030

31-
[Red Badger on Ansible](http://red-badger.com/blog/2013/06/29/ansible/)
31+
* [Red Badger on Ansible](http://red-badger.com/blog/2013/06/29/ansible/)
3232

33-
[Getting Started with Ansible](http://lowendbox.com/blog/getting-started-with-ansible/)
33+
* [Getting Started with Ansible](http://lowendbox.com/blog/getting-started-with-ansible/)
3434

35-
[Ansible and Linode](http://softwareas.com/ansible-and-linode-what-i-learned-about-controlling-linodes-from-ansible)
35+
* [Ansible and Linode](http://softwareas.com/ansible-and-linode-what-i-learned-about-controlling-linodes-from-ansible)
3636

37-
[Multi-factor SSH authentication with Ansible and Duo Security](http://jlafon.io/ansible-duo-security.html)
37+
* [Multi-factor SSH authentication with Ansible and Duo Security](http://jlafon.io/ansible-duo-security.html)
3838

39-
[Ansible vs. Shell Scripts](http://devopsu.com/blog/ansible-vs-shell-scripts/)
39+
* [Ansible vs. Shell Scripts](http://devopsu.com/blog/ansible-vs-shell-scripts/)
4040

41-
[Ansible and Salt: A Detailed Comparison](http://missingm.co/2013/06/ansible-and-salt-a-detailed-comparison/)
41+
* [Ansible and Salt: A Detailed Comparison](http://missingm.co/2013/06/ansible-and-salt-a-detailed-comparison/)
4242

43-
[Automating your development environment with Ansible](http://www.nickhammond.com/automating-development-environment-ansible/)
43+
* [Automating your development environment with Ansible](http://www.nickhammond.com/automating-development-environment-ansible/)
4444

45-
[Post-install steps with Ansible](http://devopsu.com/guides/ansible-post-install.html)
45+
* [Post-install steps with Ansible](http://devopsu.com/guides/ansible-post-install.html)
4646

47-
[First Five (and a half) Minutes on a Server with Ansible](http://lattejed.com/first-five-and-a-half-minutes-on-a-server-with-ansible)
47+
* [First Five (and a half) Minutes on a Server with Ansible](http://lattejed.com/first-five-and-a-half-minutes-on-a-server-with-ansible)
4848

49-
[(Detailed) Introduction to Ansible](http://davidwinter.me/articles/2013/11/23/introduction-to-ansible/)
49+
* [(Detailed) Introduction to Ansible](http://davidwinter.me/articles/2013/11/23/introduction-to-ansible/)
5050

51-
[Create a Couchbase Cluster with Ansible](http://blog.couchbase.com/create-couchbase-cluster-with-ansible)
51+
* [Create a Couchbase Cluster with Ansible](http://blog.couchbase.com/create-couchbase-cluster-with-ansible)
5252

53-
[Idempotence, convergence, and other silly fancy words we often use](https://groups.google.com/forum/#!msg/Ansible-project/WpRblldA2PQ/lYDpFjBXDlsJ")
53+
* [Idempotence, convergence, and other silly fancy words we often use](https://groups.google.com/forum/#!msg/Ansible-project/WpRblldA2PQ/lYDpFjBXDlsJ)
5454

5555

0 commit comments

Comments
 (0)