Dear Customer, the RevolutionPi Revolution Pi is based on an open source platform, which can lead to misbehavior of the devices. To solve some problems, you can use Ansible. Because Ansible is all about automation, it requires instructions to accomplish each job. With everything written down in simple script form, it's easy to do version control and automate repetitive tasks with relative ease. Regardless of whether it is a single system or many. It is available as open source software under the GNU General Public License for DevOps around the world.
...
Code Block |
---|
sudo apt update sudo apt install ansible tree |
- Automatic copying of the public key to the target system
Ansible automates important tasks on a target system via SSH. The SSH key of the Ansible host is located on the target system. With ssh-keygen, an SSH key is generated for your target system and entered into a repository. The repository is always different.
Info |
---|
After we have created an SSH key, we can enter it manually in the authorised_keys file of the remote computer or use the ssh-copy-id command. We will use the ssh-copy-id command to simplify this process. Simply call the ssh-copy-id command and pass the path to the public key as follows:
|
Code Block |
---|
# Copying the SSH key with SSH-copy-id for the system of our example
ssh-copy-id -i /root/.ssh/id_rsa.pub pi@192.168.0.66 |
- Cloning the repository
We have a repository on Github where all the essential elements for solving the tasks are stored. This repository can be reached through this link https://github.com/RevolutionPi/revpi-ansible-recipes.
...
Code Block |
---|
git clone https://github.com/RevolutionPi/revpi-ansible-recipes.git
cd revpi-ansible-recipes/roles |
With the command ls -l, you can see the names of all the files that govern the different tasks. If you know the name of the files that governs your task, please write it down. For our example, we will use the REVPI-Switch.yml.
...
all contents of the order revpi-ansible-recipes
...
- An "Inventory" must be adjustedcreated. In the inventory, you must enter the IP address of your target system. All devices on which the tasks are to be executed must be entered under [bet] as shown below (see the picture inventory adjustment)
...
Code Block |
---|
sudo nano inventory |
Enter the following declarations into the inventory
Code Block |
---|
[target]
localhost
[revpi]
<ip-adress of your host> remote_user=pi ansible_python_interpreter=/usr/bin/python3 |
...
- From the repository revpi-ansible-recipes/roles/network-bridge/README.md → revpi-ansible-recipes/README.md at master · RevolutionPi/revpi-ansible-recipes (github.com)) you get the Description of how to edit the Ansible script that performs your Tasks and how to configure it with the roles.
For our example, we use the role network-bridge. To see all available roles
Code Block |
---|
cd roles |
then
Code Block |
---|
ls -l |
...
At the moment of editing this tutorial, there is only one role in the repository: network-bridge.
Now get back to the last order revpi-ansible-recipes and editing the new ansible-script (myplaybook.yml), that perform the task for the role network-bridge.
Code Block |
---|
cd ..
sudo nano myplaybook.yml |
...
- Now run the Ansible script in terminal of ubuntu on windows
Code Block |
---|
ansible-playbook -i inventory -u pi REVPI-Switchmyplaybook.yml |
...
Once the script has been successfully executed, we can see the status of the execution, as shown in the following illustration:
...