MOTOSHARE ๐Ÿš—๐Ÿ๏ธ
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
๐Ÿš€ Everyone wins.

Start Your Journey with Motoshare

Use of runtime variables to save into another variable using register in Ansible

Another major use of variables is running a command and using the result of that command to save the result into a variable   – hosts: all tasks: – name: Ansible register variable basic example shell: “find *.txt” args: chdir: “/Users/mdtutorials2/Documents/Ansible” register: find_output – debug: var: find_output # – hosts: all tasks: – name: Ansible … Read more

Run Ansible Adhoc commands or playbook in Local mode

If you are trying to run Ansible Adhoc commands or playbook in Local mode, these articles will help you. Ansible can’t run playbooks locally without ssh if ansible_connection=local is defined in the hosts file, although it can run playbooks locally without ssh with connection: local in the playbook or with flag –connection=local. # # # … Read more

Ansible Playbook Lab & Excercise โ€“ Part 2

Execution Mode โ€“ Remote Write a Ansible Playbook to create a group called โ€œdeployโ€ Write a Ansible Playbook to create a user called โ€œdeploy-userโ€ which is part of group called โ€œgroupโ€ and with /bin/bash shell. Write a Ansible Playbook to install package named โ€œhttpdโ€ in RHEL/centos. Write a Ansible Playbook to start and enable the … Read more

Ansible Adhoc Commands Lab & Excercise – Part 1

Execution Mode – Local Write a Ansible Adhoc Commands to create a group called “deploy” Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “group” and with /bin/bash shell. Write a Ansble Adhoc commands install package named “httpd” in RHEL/centos. Write a Ansible Adhoc commands to start … Read more

Puppet Module Lab & Excercise โ€“ Part 1

Puppet Module Lab & Excercise โ€“ Part 1 Write a puppet module to setup a webserver(httpd) only in RHEL and use the HEREDOC to craete a html code of index.html inside a directory called “/var/www/html/index.html” Write a puppet module to setup a webserver(httpd) only in RHEL and use the puppet template to create a html … Read more

Puppet Program Lab & Excercise โ€“ Part 2

Puppet Program Lab & Excercise โ€“ Part 1 Write a puppet Program to install package “git”, “ntp” and wget in RHEL. Which resource declaration can help us to deploy the “~/.ssh/authorized_keys” in 1000s of servers? Write a puppet Program to extract a tar ball in /opt Write a puppet Program to zip a directory which … Read more

Puppet Program Lab & Excercise – Part 1

Puppet Program Lab & Excercise – Part 1 Write a Puppet Program to create a file named with “file.txt” in /opt/ owner by ec2-user and execute permission? Write a Puppet Program to create a group called “scmgalaxy-admins” Write a Puppet Program to create a usser called “deploy” which should be a part of “scmgalaxy-admins” group. … Read more