lazycoder9/project-lvl2-s13

View on GitHub
cm/vagrant.yml

Summary

Maintainability
Test Coverage
---

- hosts: all
  tasks:
    - block:
      - name: generate locale
        locale_gen:
          name: en_US.UTF-8
          state: present
        tags: [locale]

      - name: set locale
        become: yes
        shell: update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8
        tags: [locale]

      - name: Install npm
        apt:
          name: npm
          state: latest
        become: yes

      - name: Install Node
        apt:
          name: node
          state: present
        become: yes

      - name: Install git
        apt:
          name: git
          state: present
        become: yes