Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ansible and Playbook. How to convert shell commands into yaml syntax?

I'm a newbie in Ansible and I don't understand how all people easily write shell commands in the Ansible/YAML syntax. May be I've missed a page from the documentation where it is explained well.

For example: What do I need to write in my playbook.yml if I want to perform these commands in my remote machines:

sudo apt-get install software-properties-common
sudo apt-key adv –recv-keys –keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
sudo add-apt-repository 'deb http://mariadb.biz.net.id//repo/5.5/ubuntu precise main'

I think it would be something like this:

- name: install mariadb
  apt: ...
  sudo: yes
like image 211
Timur Fayzrakhmanov Avatar asked Jan 08 '14 19:01

Timur Fayzrakhmanov


1 Answers

As raw shell command modules will do the trick for plain translation of bash scripts. They will rarely end up to be idempotent actions. They can not be run twice without producing errors.

The Ansible way of doing this is to use the appropriate modules, in your case

  • apt_key : add the gpg key
  • apt_repository : install the repository
  • apt : install the package

A sample for mariadb

like image 132
mestachs Avatar answered Sep 28 '22 02:09

mestachs