Skip to content
Snippets Groups Projects
Commit 48e7f909 authored by root's avatar root
Browse files

fix al master task

parent 695febef
No related branches found
No related tags found
No related merge requests found
......@@ -23,3 +23,30 @@
owner: debian
group: debian
- name: apt-get update
become_method: sudo
apt:
update_cache: yes
- name: installo alcuni pacchetti
become_method: sudo
apt:
name: "{{ item }}"
state: present
with_items:
- git
- python-pip
- name: Repo Git
git:
repo: https://gitlab.global.garrservices.it/visconti/ansible-introduzione.git
clone: yes
dest: "/home/debian/corso"
- name: cambio i permessi
become_method: sudo
file:
path: "/home/debian/corso"
owner: "debian"
group: "debian"
recurse: "yes"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment