Initial commit
This commit is contained in:
commit
91846db7af
10 changed files with 175 additions and 0 deletions
23
tasks/main.yml
Normal file
23
tasks/main.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
# 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: Update apt cache
|
||||
apt:
|
||||
update_cache: yes
|
||||
cache_valid_time: 7200
|
||||
|
||||
- name: Install Sublime Text
|
||||
apt:
|
||||
pkg:
|
||||
- sublime-text
|
||||
register: sublime_text_installed
|
||||
Loading…
Add table
Add a link
Reference in a new issue