blob: a306ba2267d97b4890765620db4398f5c8e14214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
This folder contains configuration of host machines taking part in Tizen Common
automated laboratory.
Requirements:
* Ansible - the configuration was tested with version: 2.0.2
* ssh on the local machine and sshd on the remote one
* a user with passwordless sudo privileges (ansible_user)
Before doing anything you must set valid ip addresses and ansible user name
in file 'hosts'.
You must provide address of master and runner machine. User is common for both
hosts. Example hosts file might look like this:
[master]
192.168.69.10
[runner]
192.168.69.10
[all:vars]
ansible_user=vagrant
Note that runner and master may be the same machine.
Next step is to install ssh key in order to be able to run other scripts.
To do that run script named 'installkey.sh'. It will execute ansible playbook
'installsshkey.yml' and you will have to enter password for specified user.
|