Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 693 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 693 Bytes

Plang

How to use

  1. Install ansible package

  2. Specifies the roles to be performed in site.yaml

# site.yaml
---
roles:
  - golang
  - nodejs
  - ruby
  1. Type the version of programming languages you want to install in vars/version.yaml
# vars/version.yaml
---
vars:
  version:
    golang: 1.17
    nodejs: 14.17.5
    ruby: 3.0.2
  1. Set the host to be executed in hosts.ini and site.yaml

  2. run the playbook

$ ansible-playbook site.yaml

Referenced