Added a tip about how to run the provisioning from within the VM
This commit is contained in:
parent
5e3f7329d2
commit
781683a998
2 changed files with 52 additions and 0 deletions
39
provisioning/roles/jotbe.dev-tools/tasks/main.yml
Normal file
39
provisioning/roles/jotbe.dev-tools/tasks/main.yml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
# tasks file for jotbe.dev-tools
|
||||
|
||||
- name: Add key for Sublime Text repo
|
||||
apt_key:
|
||||
url: https://download.sublimetext.com/sublimehq-pub.gpg
|
||||
state: present
|
||||
|
||||
- name: Add repository for Sublime Text
|
||||
apt_repository:
|
||||
repo: deb https://download.sublimetext.com/ apt/stable/
|
||||
state: present
|
||||
|
||||
- name: Add key for VSCodium repo
|
||||
apt_key:
|
||||
url: https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
|
||||
state: present
|
||||
|
||||
- name: Add repository for VSCodium
|
||||
apt_repository:
|
||||
repo: deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main
|
||||
state: present
|
||||
|
||||
- name: Update apt cache
|
||||
apt:
|
||||
update_cache: yes
|
||||
cache_valid_time: 7200
|
||||
|
||||
- name: Install Sublime Text
|
||||
apt:
|
||||
pkg:
|
||||
- sublime-text
|
||||
register: sublime_text_installed
|
||||
|
||||
- name: Install VSCodium
|
||||
apt:
|
||||
pkg:
|
||||
- codium
|
||||
register: vscodium_installed
|
||||
Loading…
Add table
Add a link
Reference in a new issue