sublime-text
parent
69be800f4e
commit
d93cf21c07
23
play_apt.yml
23
play_apt.yml
|
@ -36,6 +36,28 @@
|
||||||
tags:
|
tags:
|
||||||
- deb-utils
|
- deb-utils
|
||||||
|
|
||||||
|
- name: sublime-text
|
||||||
|
hosts: localhost
|
||||||
|
connection: local
|
||||||
|
become: true
|
||||||
|
tasks:
|
||||||
|
- name: add pgp key
|
||||||
|
apt_key:
|
||||||
|
url: https://download.sublimetext.com/sublimehq-pub.gpg
|
||||||
|
state: present
|
||||||
|
- name: add repository
|
||||||
|
apt_repository:
|
||||||
|
repo: 'deb https://download.sublimetext.com/ apt/stable/'
|
||||||
|
state: present
|
||||||
|
filename: sublime-text.list
|
||||||
|
update_cache: yes
|
||||||
|
- name: install sublime-text
|
||||||
|
apt:
|
||||||
|
name: sublime-text
|
||||||
|
state: present
|
||||||
|
tags:
|
||||||
|
- sublime-text
|
||||||
|
|
||||||
- name: kismet
|
- name: kismet
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
connection: local
|
connection: local
|
||||||
|
@ -61,7 +83,6 @@
|
||||||
groups: kismet
|
groups: kismet
|
||||||
append: yes
|
append: yes
|
||||||
tags:
|
tags:
|
||||||
- repo
|
|
||||||
- kismet
|
- kismet
|
||||||
|
|
||||||
- name: deb-sec
|
- name: deb-sec
|
||||||
|
|
Loading…
Reference in New Issue