Files
cours-ISEN-MD/ISEN/Cloud Computing/CIPA4/TP 3 Ansible.md

362 B

#CIPA4 #CloudComputing #DP #Ansible #TP

TP 3

ssh root@135.125.246.84

mdp : moutarde42

Step2

---
- hosts: demo
  gather_facts: yes
  tasks:
  - name: Install the git package
	apt:
		name: git
		state: present
  - name: Clone my flask application
	git:
		repo: 'https://github.com/arnaudmorin/demo-flask.git'
		dest: /root/demo-flask