-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from ipovalyaev/install_ansible
#27 initial script to install ansible
- Loading branch information
Showing
4 changed files
with
59 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
For initial server setup run | ||
``` | ||
git clone [email protected]:lacmus-foundation/lacmus-web-api.git | ||
cd lacmus-web-api | ||
sudo ./server_setup.sh |
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,4 @@ | ||
sudo apt update | ||
sudo apt install software-properties-common | ||
sudo apt-add-repository --yes --update ppa:ansible/ansible | ||
sudo apt install -y ansible |
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,48 @@ | ||
# should be copied to /etc/ansible/hosts after install ansible | ||
|
||
# - Comments begin with the '#' character | ||
# - Blank lines are ignored | ||
# - Groups of hosts are delimited by [header] elements | ||
# - You can enter hostnames or ip addresses | ||
# - A hostname/ip can be a member of multiple groups | ||
|
||
# Ex 1: Ungrouped hosts, specify before any group headers. | ||
|
||
#green.example.com | ||
#blue.example.com | ||
#192.168.100.1 | ||
#192.168.100.10 | ||
|
||
# Ex 2: A collection of hosts belonging to the 'webservers' group | ||
|
||
#[webservers] | ||
#alpha.example.org | ||
#beta.example.org | ||
#192.168.1.100 | ||
#192.168.1.110 | ||
|
||
# If you have multiple hosts following a pattern you can specify | ||
# them like this: | ||
|
||
#www[001:006].example.com | ||
|
||
# Ex 3: A collection of database servers in the 'dbservers' group | ||
|
||
#[dbservers] | ||
# | ||
#db01.intranet.mydomain.net | ||
#db02.intranet.mydomain.net | ||
#10.25.1.56 | ||
#10.25.1.57 | ||
|
||
# Here's another example of host ranges, this time there are no | ||
# leading 0s: | ||
|
||
#db-[99:101]-node.example.com | ||
|
||
|
||
[dev_servers] | ||
127.0.0.1 | ||
|
||
[all:vars] | ||
ansible_python_interpreter=/usr/bin/python3 |
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,2 @@ | ||
./ansible.sh | ||
cp ansible_hosts /etc/ansible/hosts |