Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegoaceneves/7686b2c3ac3c646f015cdc699d8684a2 to your computer and use it in GitHub Desktop.
Save diegoaceneves/7686b2c3ac3c646f015cdc699d8684a2 to your computer and use it in GitHub Desktop.
- name: Instalando o WebServer
hosts: 'all'
become: true
become_user: ubuntu
become_method: sudo
tasks:
- name: Atualizando repositórios
apt:
upgrade: dist
update_cache: yes
- name: Instalando Pacotes
apt:
name: "{{ packages }}"
vars:
packages:
- apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment