-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: install httplib2 for GCE's Ubuntu 14.04 instances.
- Loading branch information
1 parent
9efe96d
commit 7ae6c81
Showing
8 changed files
with
53 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[azure-host] | ||
111.222.333.444 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# ec2-host | ||
|
||
[wordpress] | ||
111.111.111.111 ansible_ssh_user=ubuntu | ||
#111.111.111.111 ansible_user=ubuntu | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# gce-host | ||
|
||
[wordpress] | ||
mywordpress ansible_ssh_host=104.0.0.100 | ||
#mywordpress ansible_host=104.0.0.100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ | |
blog_email: [email protected] | ||
|
||
tasks: | ||
- name: ==> 12 - automate the '5-minute install' process | ||
- debug: ==> 12 - automate the '5-minute install' process | ||
|
||
- name: install dependency - httplib2 | ||
apt: name=python-httplib2 state=present | ||
#pip: name=httplib2 | ||
|
||
- name: send POST to WordPress install wizard | ||
uri: | ||
url: "{{ wordpress_install_url }}" | ||
method: POST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ | |
blog_email: [email protected] | ||
|
||
tasks: | ||
- name: ==> 12 - automate the '5-minute install' process | ||
- debug: ==> 12 - automate the '5-minute install' process | ||
|
||
- name: install dependency - httplib2 | ||
apt: name=python-httplib2 state=present | ||
#pip: name=httplib2 | ||
|
||
- name: send POST to WordPress install wizard | ||
uri: | ||
url: "{{ wordpress_install_url }}" | ||
method: POST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ | |
blog_email: [email protected] | ||
|
||
tasks: | ||
- name: ==> 12 - automate the '5-minute install' process | ||
- debug: ==> 12 - automate the '5-minute install' process | ||
|
||
- name: install dependency - httplib2 | ||
apt: name=python-httplib2 state=present | ||
#pip: name=httplib2 | ||
|
||
- name: send POST to WordPress install wizard | ||
uri: | ||
url: "{{ wordpress_install_url }}" | ||
method: POST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ | |
blog_email: [email protected] | ||
|
||
tasks: | ||
- name: ==> 12 - automate the '5-minute install' process | ||
- debug: ==> 12 - automate the '5-minute install' process | ||
|
||
- name: install dependency - httplib2 | ||
apt: name=python-httplib2 state=present | ||
#pip: name=httplib2 | ||
|
||
- name: send POST to WordPress install wizard | ||
uri: | ||
url: "{{ wordpress_install_url }}" | ||
method: POST | ||
|