Skip to content

Commit

Permalink
Merge pull request #31 from ipovalyaev/install_ansible
Browse files Browse the repository at this point in the history
#27 initial script to install ansible
  • Loading branch information
gosha20777 authored Oct 8, 2020
2 parents 7edf933 + b5def37 commit 8203f20
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server_install/README.md
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
4 changes: 4 additions & 0 deletions server_install/ansible.sh
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
48 changes: 48 additions & 0 deletions server_install/ansible_hosts
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
2 changes: 2 additions & 0 deletions server_install/server_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
./ansible.sh
cp ansible_hosts /etc/ansible/hosts

0 comments on commit 8203f20

Please sign in to comment.